Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions shell/components/auth/SelectPrincipal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,10 @@ export default {
if ( this.searchStr === str ) {
// If not, they've already typed something else
this.options = res.map((x) => x.id);
// display the search results if the dropdown has been closed
if (this.options.length) {
this.$refs['labeled-select'].isOpen = true;
}
}
} catch (e) {
this.options = [];
Expand Down
Loading