This commit is contained in:
2020-05-20 14:12:03 +00:00
parent b03d0859ff
commit c751f45d8d
2 changed files with 12 additions and 2 deletions

View File

@@ -444,7 +444,7 @@ function populateEventTypeList(vm) {
},
8: {
name: vm.$ay.t("EventLicenseTrialRequest"),
icon: "fa-arrow-circle-down"
icon: "fa-arrow-circle-down" //hol up, this is the download icon...wtf??
},
9: {
name: vm.$ay.t("EventServerStateChange"),
@@ -453,7 +453,11 @@ function populateEventTypeList(vm) {
10: { name: vm.$ay.t("EventSeedDatabase"), icon: "fa-plus" },
11: { name: vm.$ay.t("EventAttachmentModified"), icon: "fa-save" },
12: { name: "ERASE ALL DATA", icon: "fa-seedling" },
13: { name: vm.$ay.t("EventResetSerial"), icon: "fa-egg" }
13: { name: vm.$ay.t("EventResetSerial"), icon: "fa-egg" },
13: {
name: vm.$ay.t("EventUtilityFileDownload"),
icon: "fa-arrow-circle-down"
}
};
}
@@ -475,6 +479,8 @@ function fetchTranslatedText(vm) {
"EventLicenseTrialRequest",
"EventServerStateChange",
"EventSeedDatabase",
"EventResetSerial",
"EventUtilityFileDownload",
"Activity"
]);
}