This commit is contained in:
2020-10-06 17:31:19 +00:00
parent 85138a3b27
commit d9a7debf83
9 changed files with 67 additions and 11 deletions

View File

@@ -433,7 +433,7 @@ function populateEventTypeList(vm) {
},
8: {
name: vm.$ay.t("EventLicenseTrialRequest"),
icon: "fa-arrow-circle-down" //hol up, this is the download icon...wtf??
icon: "$ayiRocket"
},
9: {
name: vm.$ay.t("EventServerStateChange"),
@@ -442,7 +442,7 @@ function populateEventTypeList(vm) {
10: { name: vm.$ay.t("EventSeedDatabase"), icon: "$ayiPlus" },
11: { name: vm.$ay.t("EventAttachmentModified"), icon: "$ayiSave" },
12: { name: "ERASE ALL DATA", icon: "$ayiSeedling" },
13: { name: vm.$ay.t("EventResetSerial"), icon: "fa-egg" },
13: { name: vm.$ay.t("EventResetSerial"), icon: "$ayiEgg" },
13: {
name: vm.$ay.t("EventUtilityFileDownload"),
icon: "$ayiFile-download"

View File

@@ -1071,7 +1071,7 @@ function generateMenu(vm) {
if (vm.reportData != null) {
menuOptions.menuItems.push({
title: "Report",
icon: "fa-print",
icon: "$ayiPrint",
key: FORM_KEY + ":render",
surface: true,
vm: vm

View File

@@ -236,7 +236,7 @@ export default {
window.$gz.eventBus.$emit(
"menu-change-item-icon",
FORM_KEY + ":darkmode",
vm.darkMode ? "fa-sun" : "fa-moon"
vm.darkMode ? "$ayiSun" : "$ayiMoon"
);
},
fieldValueChanged(ref) {
@@ -413,7 +413,7 @@ function generateMenu(vm) {
menuOptions.menuItems.push({
title: "DarkMode",
icon: vm.darkMode ? "fa-sun" : "fa-moon",
icon: vm.darkMode ? "$ayiSun" : "$ayiMoon",
surface: true,
key: FORM_KEY + ":darkmode",
vm: vm

View File

@@ -2,7 +2,7 @@
<v-row justify-center>
<v-col cols="12">
<div class="text-center">
<v-icon color="red" size="100">fa-dragon</v-icon>
<v-icon color="red" size="100">$ayiDragon</v-icon>
<div class="headline mt-8">
{{ msg }}
</div>
@@ -38,7 +38,7 @@ export default {
//set the title of the window
window.$gz.eventBus.$emit("menu-change", {
isMain: true,
icon: "fa-dragon",
icon: "$ayiDragon",
title: "404 - " + notFoundTranslated
});
}

View File

@@ -270,7 +270,7 @@ function generateMenu(vm) {
menuOptions.menuItems.push({
title: "ShutDownServer",
icon: "fa-stop-circle",
icon: "$ayiStopCircle",
surface: false,
key: FORM_KEY + ":shutdown",
vm: vm

View File

@@ -12,7 +12,7 @@ export default {
beforeCreate() {
window.$gz.eventBus.$emit("menu-change", {
isMain: true,
icon: "fa-stamp",
icon: "$ayiStamp",
title: "PMTemplate",
helpUrl: "form-svc-pm-templates"
});

View File

@@ -12,7 +12,7 @@ export default {
beforeCreate() {
window.$gz.eventBus.$emit("menu-change", {
isMain: true,
icon: "fa-stamp",
icon: "$ayiStamp",
title: "WorkOrderQuoteTemplate",
helpUrl: "form-svc-quote-templates"
});

View File

@@ -12,7 +12,7 @@ export default {
beforeCreate() {
window.$gz.eventBus.$emit("menu-change", {
isMain: true,
icon: "fa-stamp",
icon: "$ayiStamp",
title: "WorkOrderServiceTemplate",
helpUrl: "form-svc-workorder-templates"
});