Skip to content

Commit

Permalink
fix(VCombobox): show menu icon when hideNoData is disabled
Browse files Browse the repository at this point in the history
  • Loading branch information
KaelWD committed May 15, 2023
1 parent 4d60eb7 commit c69dc9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vuetify/src/components/VCombobox/VCombobox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,7 @@ export const VCombobox = genericComponent<new <
'append-inner': (...args) => (
<>
{ slots['append-inner']?.(...args) }
{ props.items.length && props.menuIcon ? (
{ (!props.hideNoData || props.items.length) && props.menuIcon ? (
<VIcon
class="v-combobox__menu-icon"
icon={ props.menuIcon }
Expand Down

0 comments on commit c69dc9e

Please sign in to comment.