Bug 34735: Update breadcrumb markup

Make the breadcrumb navigation item markup match the rest of Koha

Signed-off-by: Owen Leonard <oleonard@myacpl.org>
Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
This commit is contained in:
Pedro Amorim 2023-09-07 09:53:43 +00:00 committed by Tomas Cohen Arazi
parent c84d53c2cd
commit e0d3ffff48
Signed by: tomascohen
GPG key ID: 0A272EA1B2F3C15F

View file

@ -31,14 +31,14 @@
</template>
<span v-if="item.title">{{ $__(item.title) }}</span>
</a>
<span v-else :class="{ disabled: item.disabled }">
<a v-else href="#" aria-current="page">
<template v-if="item.icon">
<i :class="`${item.icon}`"></i>&nbsp;
</template>
<span class="item-last" v-if="item.title">{{
$__(item.title)
}}</span>
</span>
</a>
</span>
<ul v-if="item.children && item.children.length">
<NavigationItem