This commit is contained in:
2019-12-16 21:37:53 +00:00
parent e3280991f3
commit 7c5814eb0d
2 changed files with 14 additions and 2 deletions

View File

@@ -5,7 +5,6 @@
<!-- <gztest ref="gztest"></gztest> -->
<v-navigation-drawer v-if="isAuthenticated" v-model="drawer" app>
<v-list dense>
<v-list-item
v-for="item in navItems"
:key="item.route"
@@ -18,7 +17,6 @@
<v-list-item-title>{{ item.title }}</v-list-item-title>
</v-list-item-content>
</v-list-item>
</v-list>
</v-navigation-drawer>
<v-app-bar

View File

@@ -66,6 +66,20 @@ export default function initialize() {
//3rd level items under preferences
var subSub = [];
//LOCALE
subSub.push({
title: window.$gz.locale.get("Locale"),
icon: "language",
route: "/locale"
});
//LOGIN
subSub.push({
title: window.$gz.locale.get("SetLoginPassword"),
icon: "key",
route: "/changepw"
});
//Preferences (personal)
sub.push({
title: window.$gz.locale.get("UserPreferences"),