This commit is contained in:
2020-10-05 22:13:18 +00:00
parent f2678cc9b4
commit 17652ec56d
16 changed files with 55 additions and 25 deletions

View File

@@ -107,7 +107,7 @@ export default {
vm.appBar.menuItems.push({
title: "Review",
icon: "fa-calendar-check",
icon: "$ayiCalendarCheck",
key: "app:review",
data: { ayaType: formAyaType, recordId: formRecordId }
});
@@ -116,7 +116,7 @@ export default {
//anything not would be the exception rather than the rule
vm.appBar.menuItems.push({
title: "History",
icon: "fa-history",
icon: "$ayiHistory",
key: "app:history",
data: { ayaType: formAyaType, recordId: formRecordId }
});
@@ -176,7 +176,7 @@ export default {
//For all forms but not on the search form itself; if this is necessary for others then make a nosearch or something flag controlled by incoming ctx but if not then this should suffice
vm.appBar.menuItems.push({
title: "Search",
icon: "fa-search",
icon: "$ayiSearch",
key: "app:search",
data: formAyaType
});
@@ -185,7 +185,7 @@ export default {
//HELP
vm.appBar.menuItems.push({
title: "MenuHelp",
icon: "fa-question-circle",
icon: "$ayiQuestionCircle",
key: "app:help",
data: vm.appBar.helpUrl
});
@@ -194,7 +194,7 @@ export default {
if (!isCoreBizObject && ctx.helpUrl != "form-ay-about") {
vm.appBar.menuItems.push({
title: "HelpAboutAyaNova",
icon: "fa-info-circle",
icon: "$ayiInfoCircle",
key: "app:nav:abt",
data: "ay-about"
});