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
3
.gitignore
vendored
3
.gitignore
vendored
@@ -25,6 +25,7 @@ cli/src/main/resources/application-override.yml
|
||||
node
|
||||
node_modules
|
||||
yarn-error.log
|
||||
yarn.lock
|
||||
ui/node_modules
|
||||
ui/.env.local
|
||||
ui/.env.*.local
|
||||
@@ -32,4 +33,4 @@ webserver/src/main/resources/ui
|
||||
|
||||
|
||||
### Docker
|
||||
/.env
|
||||
/.env
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
<b-breadcrumb>
|
||||
<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-nav-text>
|
||||
</b-navbar-nav>
|
||||
|
||||
Reference in New Issue
Block a user