We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f779c80 commit 9634f41Copy full SHA for 9634f41
src/components/Navigator/NavigatorCardItem.vue
@@ -13,7 +13,7 @@
13
:class="{ expanded, active: isActive, 'is-group': isGroupMarker }"
14
:style="{ '--nesting-index': item.depth }"
15
:data-nesting-index="item.depth"
16
- :id="`container-${item.uid}`"
+ :id="item.uid ? `container-${item.uid}` : null"
17
:aria-hidden="isRendered ? null : 'true'"
18
:hideNavigatorIcon="isGroupMarker"
19
@keydown.left.native.prevent="handleLeftKeydown"
@@ -75,7 +75,7 @@
75
}
76
) }}</span>
77
<span
78
- v-if="!isParent"
+ v-else-if="item.siblingsCount"
79
:id="siblingsLabel"
80
hidden
81
>
0 commit comments