From c751f45d8d403e7eff2cacd233f8d845ea2fdb94 Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Wed, 20 May 2020 14:12:03 +0000 Subject: [PATCH] --- ayanova/devdocs/todo.txt | 4 ++++ ayanova/src/views/ay-history.vue | 10 ++++++++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/ayanova/devdocs/todo.txt b/ayanova/devdocs/todo.txt index 09049aa2..227dc18c 100644 --- a/ayanova/devdocs/todo.txt +++ b/ayanova/devdocs/todo.txt @@ -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 diff --git a/ayanova/src/views/ay-history.vue b/ayanova/src/views/ay-history.vue index 0d5c6f25..766f6ccd 100644 --- a/ayanova/src/views/ay-history.vue +++ b/ayanova/src/views/ay-history.vue @@ -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" ]); }