Skip to content

Commit

Permalink
Merge pull request #13073 from houhoucoop/harvester-issue-6946
Browse files Browse the repository at this point in the history
LabeledSelect: Show tag prompts only if select is searchable
  • Loading branch information
houhoucoop authored Jan 16, 2025
2 parents 6bf215b + 1ede584 commit 36d8a06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shell/components/form/LabeledSelect.vue
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ export default {
// update placeholder text to inform user they can add their own opts when none are found
showTagPrompts() {
return !this.options.length && this.$attrs.taggable;
return !this.options.length && this.$attrs.taggable && this.isSearchable;
}
},
Expand Down

0 comments on commit 36d8a06

Please sign in to comment.