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

@@ -3,6 +3,10 @@
PRIORITY - ALWAYS Lowest level stuff first, i.e. TODO at server, api route changes etc then back here in order lowest level first as affects the most stuff exponentially so best to do it early
=-=-=-=-
todo: ay-history.vue
8: {
name: vm.$ay.t("EventLicenseTrialRequest"),
icon: "fa-arrow-circle-down"//hol up, this is the download icon...wtf??
todo: persisted state: https://github.com/robinvdvleuten/vuex-persistedstate
- I can control which paths are persisted, maybe there is shit in there that doesn't need to be persisted or shouldn't be

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"
]);
}