Skip to content

Commit 909d30c

Browse files
committed
Transform item's path to lowercase in navigator
1 parent f68d28e commit 909d30c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/Navigator/NavigatorCardItem.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
:is="refComponent"
9090
:id="item.uid"
9191
:class="{ bolded: isBold }"
92-
:url="isGroupMarker ? null : (item.path || '')"
92+
:url="isGroupMarker ? null : (item.path.toLowerCase() || '')"
9393
:tabindex="isFocused ? '0' : '-1'"
9494
:aria-describedby="`${ariaDescribedBy} ${usageLabel}`"
9595
class="leaf-link"

0 commit comments

Comments
 (0)