Skip to content

Commit e7e1d53

Browse files
Display: Always prevent linking breadcrumb's last element - refs #6862
1 parent 74108d0 commit e7e1d53

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

assets/vue/components/Breadcrumb.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<Breadcrumb :model="itemList">
77
<template #item="{ item, props }">
88
<BaseAppLink
9-
v-if="item.route || item.url"
9+
v-if="(item.route || item.url) && item !== itemList[itemList.length - 1]"
1010
:to="item.route"
1111
:url="item.url"
1212
v-bind="props.action"

0 commit comments

Comments
 (0)