Skip to content

Commit 9634f41

Browse files
committed
Render AX if helpers if siblingsCount
1 parent f779c80 commit 9634f41

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/Navigator/NavigatorCardItem.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
:class="{ expanded, active: isActive, 'is-group': isGroupMarker }"
1414
:style="{ '--nesting-index': item.depth }"
1515
:data-nesting-index="item.depth"
16-
:id="`container-${item.uid}`"
16+
:id="item.uid ? `container-${item.uid}` : null"
1717
:aria-hidden="isRendered ? null : 'true'"
1818
:hideNavigatorIcon="isGroupMarker"
1919
@keydown.left.native.prevent="handleLeftKeydown"
@@ -75,7 +75,7 @@
7575
}
7676
) }}</span>
7777
<span
78-
v-if="!isParent"
78+
v-else-if="item.siblingsCount"
7979
:id="siblingsLabel"
8080
hidden
8181
>

0 commit comments

Comments
 (0)