Skip to content

Commit

Permalink
remove cursor in single-select
Browse files Browse the repository at this point in the history
  • Loading branch information
Mnickii committed Feb 5, 2024
1 parent e253e09 commit dc3f449
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1202,7 +1202,6 @@ export class MgtPeoplePicker extends MgtTemplatedTaskComponent {
return p.id !== person.id;
});
this.selectedPeople = filteredPersonArr;
this.enableTextInput();
void this.loadState();
}

Expand Down Expand Up @@ -1243,6 +1242,7 @@ export class MgtPeoplePicker extends MgtTemplatedTaskComponent {
this._foundPeople = [];
this._arrowSelectionCount = -1;
}
this.enableTextInput();
}
}

Expand Down Expand Up @@ -1378,7 +1378,6 @@ export class MgtPeoplePicker extends MgtTemplatedTaskComponent {
this.disableTextInput();
this.input.value = '';
}
this.enableTextInput();
this.hideFlyout();
}

Expand All @@ -1390,7 +1389,6 @@ export class MgtPeoplePicker extends MgtTemplatedTaskComponent {
this.disableTextInput();
this.input.value = '';
}
this.enableTextInput();
this.hideFlyout();
}
}
Expand Down

0 comments on commit dc3f449

Please sign in to comment.