Settings: Rename "Library" tab to "Index"

This commit is contained in:
Michael Mayer 2020-12-19 12:09:38 +01:00
parent f5426c9c20
commit 6f48781402
3 changed files with 9 additions and 9 deletions

View file

@ -28,10 +28,10 @@
<script>
import General from "pages/settings/general.vue";
import Library from "pages/settings/library.vue";
import Index from "pages/settings/index.vue";
import Advanced from "pages/settings/advanced.vue";
import Sync from "pages/settings/sync.vue";
import Account from "pages/settings/account.vue";
import Advanced from "pages/settings/advanced.vue";
function initTabs(flag, tabs) {
let i = 0;
@ -65,11 +65,11 @@ export default {
'demo': true,
},
{
'name': 'settings-library',
'component': Library,
'label': this.$gettext('Library'),
'name': 'settings-index',
'component': Index,
'label': this.$gettext('Index'),
'class': '',
'path': '/settings/library',
'path': '/settings/index',
'icon': 'camera_roll',
'public': true,
'admin': true,

View file

@ -282,8 +282,8 @@ export default [
props: { tab: "settings-general" },
},
{
name: "settings_library",
path: "/settings/library",
name: "settings_index",
path: "/settings/index",
component: Settings,
meta: {
title: $gettext("Settings"),
@ -291,7 +291,7 @@ export default [
settings: true,
background: "application-light",
},
props: { tab: "settings-library" },
props: { tab: "settings-index" },
},
{
name: "settings_sync",