Skip to content

Commit

Permalink
fix: site tree not working because of incorrect variable name (#5304)
Browse files Browse the repository at this point in the history
  • Loading branch information
myml committed May 18, 2022
1 parent 6b66953 commit 89cbb19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/themes/default/components/nav-sidebar.vue
Expand Up @@ -51,7 +51,7 @@
v-icon(small) mdi-folder-open
v-list-item-title {{ item.title }}
v-divider.mt-2
v-list-item.mt-2(v-if='currentParent.pageId > 0', :href='`/` + item.locale + `/` + currentParent.path', :key='`directorypage-` + currentParent.id', :input-value='path === currentParent.path')
v-list-item.mt-2(v-if='currentParent.pageId > 0', :href='`/` + currentParent.locale + `/` + currentParent.path', :key='`directorypage-` + currentParent.id', :input-value='path === currentParent.path')
v-list-item-avatar(size='24')
v-icon mdi-text-box
v-list-item-title {{ currentParent.title }}
Expand Down

0 comments on commit 89cbb19

Please sign in to comment.