Skip to content

Commit

Permalink
PATCH: fix(menu): only show children on hover (#289)
Browse files Browse the repository at this point in the history
  • Loading branch information
NicolasRichel authored Apr 28, 2023
1 parent c893ca4 commit 74c8c28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/BIMDataComponents/BIMDataMenu/BIMDataMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
<template v-if="item.children">
<slot name="children" :children="item.children" :item="item">
<BIMDataIcon name="chevron" size="xxs" margin="0 0 0 auto" />
<template>
<template v-if="isItemHover">
<template
v-if="hasNoChildren(item) && currentItemKey === item.key"
>
Expand Down

0 comments on commit 74c8c28

Please sign in to comment.