Skip to content

Commit

Permalink
Merge pull request #11732 from momesgin/11728-namespace-selector-styling
Browse files Browse the repository at this point in the history
Fix namespace selector's hovered/selected styling
  • Loading branch information
momesgin authored Sep 4, 2024
2 parents b10fd35 + b810729 commit af890b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shell/components/nav/NamespaceFilter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -836,7 +836,7 @@ export default {
:key="opt.id"
tabindex="0"
class="ns-option"
:disabled="!opt.enabled"
:disabled="opt.enabled ? null : true"
:class="{
'ns-selected': opt.selected,
'ns-single-match': cachedFiltered.length === 1 && !opt.selected,
Expand Down

0 comments on commit af890b7

Please sign in to comment.