Skip to content

Commit d6ebdad

Browse files
committed
added missing append slash lang nav and snaphots list
1 parent 8582932 commit d6ebdad

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

vue/src/components/MainNavigation.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
<v-list color="primary">
4949
<v-list-item
5050
v-for="item in mainnav" :key="item.textKey"
51-
:to="'/' + $i18n.locale + item.route">
51+
:to="'/' + $i18n.locale + item.route + '/'">
5252
<v-list-item-content>
5353
<v-list-item-title>{{ $t(item.textKey) }}</v-list-item-title>
5454
</v-list-item-content>

vue/src/components/SnapshotList.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
</v-subheader>
2222

2323
<v-list-item v-for="snapshot in snapshotsFiltered" :key="snapshot.node.id"
24-
:to="'/' + $i18n.locale + '/' + snapshot.node.pk"
24+
:to="'/' + $i18n.locale + '/' + snapshot.node.pk + '/'"
2525
class="px-2 mb-4" dense>
2626
<v-list-item-avatar tile size="64" class="my-2">
2727
<v-img :src="djangobaseurl + snapshot.node.screenshot.url"></v-img>

0 commit comments

Comments
 (0)