mirror of
https://github.com/kestra-io/kestra.git
synced 2025-12-19 18:05:41 -05:00
fix(ui): Breadcrumb double update
This commit is contained in:
committed by
Ludovic DEHON
parent
d0f620f507
commit
0e5bb1bddf
1
.gitignore
vendored
1
.gitignore
vendored
@@ -25,6 +25,7 @@ cli/src/main/resources/application-override.yml
|
|||||||
node
|
node
|
||||||
node_modules
|
node_modules
|
||||||
yarn-error.log
|
yarn-error.log
|
||||||
|
yarn.lock
|
||||||
ui/node_modules
|
ui/node_modules
|
||||||
ui/.env.local
|
ui/.env.local
|
||||||
ui/.env.*.local
|
ui/.env.*.local
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
<b-breadcrumb>
|
<b-breadcrumb>
|
||||||
<b-breadcrumb-item><router-link :to="{ name: 'home'}"><home /> {{$t('home') | cap}}</router-link></b-breadcrumb-item>
|
<b-breadcrumb-item><router-link :to="{ name: 'home'}"><home /> {{$t('home') | cap}}</router-link></b-breadcrumb-item>
|
||||||
<b-breadcrumb-item v-for="(item, x) in topNavbar.breadcrumb" :to="item.link" :text="item.label" />
|
<b-breadcrumb-item v-for="(item, x) in topNavbar.breadcrumb" :to="item.link" :text="item.label" :key="x" />
|
||||||
</b-breadcrumb>
|
</b-breadcrumb>
|
||||||
</b-nav-text>
|
</b-nav-text>
|
||||||
</b-navbar-nav>
|
</b-navbar-nav>
|
||||||
|
|||||||
Reference in New Issue
Block a user