diff --git a/shell/components/auth/SelectPrincipal.vue b/shell/components/auth/SelectPrincipal.vue index 59ad109492b..f10abec14c8 100644 --- a/shell/components/auth/SelectPrincipal.vue +++ b/shell/components/auth/SelectPrincipal.vue @@ -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 = [];