This commit is contained in:
@@ -30,14 +30,14 @@ All platforms and browsers
|
||||
- DONE reorganize SAVE, DELETE ETC, put a divider between main form actions and then all the myriad of secondary things
|
||||
- DONE LOCALIZE check all new menu items, some might be not localized (look for ALL CAPS)
|
||||
- DONE WIRE UP logout link to go to login form and logout properly
|
||||
### THIS NEXT -> - JUST CHANGED the keys to a new system and dropping data property, right in the middle of it actually but it needs to be changed back partially see below
|
||||
- First of all, put gzmenu on to the vue object in main so can use it for little utilities like click handling, generating unique nav keys etc
|
||||
- Reason was to ensure key uniqueness (two nav items with same key are erroring)
|
||||
- HOWEVER as I'm thinking about it now, do we really want all that url stuff being in the key?
|
||||
- Instead, change back to using data but add a third parameter to make sure that keys are unique somehow
|
||||
- That way we can put anything into the data key again because in future might need whole objects etc (almost certainly will)
|
||||
- Move ABOUT item to just above HELP in menu and remove from main NAV and make it navigate properly on click
|
||||
- Make about contextual and insert a menu item to view log
|
||||
- DONE JUST CHANGED the keys to a new system and dropping data property, right in the middle of it actually but it needs to be changed back partially see below
|
||||
- DONE First of all, put gzmenu on to the vue object in main so can use it for little utilities like click handling, generating unique nav keys etc
|
||||
- DONE Reason was to ensure key uniqueness (two nav items with same key are erroring)
|
||||
- DONE HOWEVER as I'm thinking about it now, do we really want all that url stuff being in the key?
|
||||
- DONE Instead, change back to using data but add a third parameter to make sure that keys are unique somehow
|
||||
- DONE That way we can put anything into the data key again because in future might need whole objects etc (almost certainly will)
|
||||
- DONE Move ABOUT item to just above HELP in menu and remove from main NAV and make it navigate properly on click
|
||||
- DONE Make about contextual and insert a menu item to view log
|
||||
- TODO navigating through menu doesn't "back" properly when clicking back on browser controls
|
||||
- WIRE up save menu item and add code to disable save on broken rules (and make red, disabled etc)
|
||||
- Wire up delete menu item
|
||||
|
||||
@@ -130,7 +130,8 @@ export default {
|
||||
"LicenseSerial",
|
||||
"LicenseExpiration",
|
||||
"SupportedUntil",
|
||||
"LicensedOptions"
|
||||
"LicensedOptions",
|
||||
"Log"
|
||||
]);
|
||||
},
|
||||
created() {
|
||||
@@ -140,7 +141,7 @@ export default {
|
||||
title: this.$gzlocale.get("HelpAboutAyaNova"),
|
||||
menuItems: [
|
||||
{
|
||||
title: this.$gzlocale.get("log"),
|
||||
title: this.$gzlocale.get("Log"),
|
||||
icon: "glasses",
|
||||
surface: true,
|
||||
key: "app:nav:log",
|
||||
|
||||
Reference in New Issue
Block a user