diff --git a/ayanova/devdocs/todo.txt b/ayanova/devdocs/todo.txt index 0553c134..418ea68e 100644 --- a/ayanova/devdocs/todo.txt +++ b/ayanova/devdocs/todo.txt @@ -42,7 +42,7 @@ CURRENT ROADMAP CURRENT TODOs =-=-=-=-=-=-= -todo: post to server + todo: about link is showing on about form TODO: No way to make a new widget now!!! TODO: save (post) of new record at client triggers renavigation to that page again which also triggers fetch diff --git a/ayanova/src/api/gzmenu.js b/ayanova/src/api/gzmenu.js index 2deee52e..e4bfd948 100644 --- a/ayanova/src/api/gzmenu.js +++ b/ayanova/src/api/gzmenu.js @@ -137,12 +137,15 @@ export default { }); //ABOUT - vm.appBar.menuItems.push({ - title: window.$gz.locale.get("HelpAboutAyaNova"), - icon: "info-circle", - key: "app:nav:abt", - data: "ay-about" - }); + if (ctx.helpUrl != "form-ay-about") { + vm.appBar.menuItems.push({ + title: window.$gz.locale.get("HelpAboutAyaNova"), + icon: "info-circle", + key: "app:nav:abt", + data: "ay-about" + }); + } + //LOGOUT vm.appBar.menuItems.push({ title: window.$gz.locale.get("Logout"),