This commit is contained in:
@@ -474,15 +474,15 @@ export default function initialize() {
|
||||
|
||||
// ARCHIVE
|
||||
sub.push({
|
||||
title: window.$gz.locale.get("ARCHIVE DATA"),
|
||||
icon: "archive",
|
||||
route: "/archives",
|
||||
title: window.$gz.locale.get("Backup"),
|
||||
icon: "backup",
|
||||
route: "/backup",
|
||||
key: key++
|
||||
});
|
||||
|
||||
// JOBS
|
||||
sub.push({
|
||||
title: window.$gz.locale.get("SERVER JOBS"),
|
||||
title: window.$gz.locale.get("ServerJobs"),
|
||||
icon: "robot",
|
||||
route: "/jobs",
|
||||
key: key++
|
||||
@@ -490,7 +490,7 @@ export default function initialize() {
|
||||
|
||||
// LOGS
|
||||
sub.push({
|
||||
title: window.$gz.locale.get("Log"),
|
||||
title: window.$gz.locale.get("ServerLog"),
|
||||
icon: "history",
|
||||
route: "/serverlogs",
|
||||
key: key++
|
||||
@@ -498,7 +498,7 @@ export default function initialize() {
|
||||
|
||||
//METRICS
|
||||
sub.push({
|
||||
title: window.$gz.locale.get("SERVER METRICS"),
|
||||
title: window.$gz.locale.get("ServerMetrics"),
|
||||
icon: "file-medical-alt",
|
||||
route: "/metrics",
|
||||
key: key++
|
||||
|
||||
@@ -337,10 +337,10 @@ export default new Router({
|
||||
},
|
||||
|
||||
{
|
||||
path: "/archives",
|
||||
name: "archives",
|
||||
path: "/backup",
|
||||
name: "backup",
|
||||
component: () =>
|
||||
import(/* webpackChunkName: "operations" */ "./views/archives.vue")
|
||||
import(/* webpackChunkName: "operations" */ "./views/backup.vue")
|
||||
},
|
||||
|
||||
{
|
||||
|
||||
@@ -13,8 +13,8 @@ export default {
|
||||
window.$gz.eventBus.$emit("menu-change", {
|
||||
isMain: true,
|
||||
icon: "archive",
|
||||
title: window.$gz.locale.get("ARCHIVE DATA"),
|
||||
helpUrl: "user-form-archives"
|
||||
title: window.$gz.locale.get("Backup"),
|
||||
helpUrl: "user-form-backup"
|
||||
});
|
||||
}
|
||||
};
|
||||
@@ -13,7 +13,7 @@ export default {
|
||||
window.$gz.eventBus.$emit("menu-change", {
|
||||
isMain: true,
|
||||
icon: "robot",
|
||||
title: window.$gz.locale.get("SERVER JOBS"),
|
||||
title: window.$gz.locale.get("ServerJobs"),
|
||||
helpUrl: "user-form-jobs"
|
||||
});
|
||||
}
|
||||
|
||||
@@ -13,7 +13,7 @@ export default {
|
||||
window.$gz.eventBus.$emit("menu-change", {
|
||||
isMain: true,
|
||||
icon: "file-medical-alt",
|
||||
title: window.$gz.locale.get("SERVER METRICS"),
|
||||
title: window.$gz.locale.get("ServerMetrics"),
|
||||
helpUrl: "user-form-server-metrics"
|
||||
});
|
||||
}
|
||||
|
||||
@@ -13,7 +13,7 @@ export default {
|
||||
window.$gz.eventBus.$emit("menu-change", {
|
||||
isMain: true,
|
||||
icon: "history",
|
||||
title: window.$gz.locale.get("Log"),
|
||||
title: window.$gz.locale.get("ServerLog"),
|
||||
helpUrl: "user-form-server-logs"
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user