This commit is contained in:
2019-12-19 21:34:41 +00:00
parent 43d5900786
commit e454b3968b
2 changed files with 8 additions and 11 deletions

View File

@@ -47,9 +47,6 @@ CURRENT TODOs
SHELL / NAV / MENUS / LAYOUT
TODO: Review and prioritize order of items in nav panel
TODO: RENAME Units list as Customer units? Or is that already clear?
TODO: Enforce role rights for menu items once it's stubbed out
TODO: DECIDE WHERE TO PUT MRU? In Home or in drop down menu. (I'm leaning towards in HOME as it's own page because it can be large list and don't want to burden or slow the menu too much)

View File

@@ -248,6 +248,14 @@ export default function initialize() {
key: key++
});
//LOANERS subitem
sub.push({
title: window.$gz.locale.get("LoanItemList"),
icon: "plug",
route: "/loaners",
key: key++
});
//CONTRACTS subitem
sub.push({
title: window.$gz.locale.get("ContractList"),
@@ -264,14 +272,6 @@ export default function initialize() {
key: key++
});
//LOANERS subitem
sub.push({
title: window.$gz.locale.get("LoanItemList"),
icon: "plug",
route: "/loaners",
key: key++
});
//**** Service (TOP GROUP)
addNavItem(
window.$gz.locale.get("Service"),