Skip to content

Commit

Permalink
fix(ui): invalid breadcrumb link
Browse files Browse the repository at this point in the history
close #1049
  • Loading branch information
tchiotludo committed Mar 9, 2023
1 parent ae18ca3 commit 2f675fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/components/layout/TopNavBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</router-link>
</el-breadcrumb-item>

<el-breadcrumb-item v-for="(item, x) in topNavbar.breadcrumb" :to="item.link" :key="x">
<el-breadcrumb-item v-for="(item, x) in topNavbar.breadcrumb" :key="x">
<router-link :to="item.link">
{{ item.label }}
</router-link>
Expand Down

0 comments on commit 2f675fb

Please sign in to comment.