diff --git a/ayanova/devdocs/todo.txt b/ayanova/devdocs/todo.txt index 6782d535..99857947 100644 --- a/ayanova/devdocs/todo.txt +++ b/ayanova/devdocs/todo.txt @@ -255,7 +255,10 @@ TODO: PRIORITIZE THE FOLLOWING BLOCK AND move INTO appropriate STAGES ****************************************************************** (these items came up looking through the raven priority 1 cases for general UI stuff) +todo: ability to mass tag items from list + - also a good way to do an initial implementation of a mass ops UI code +todo: ability to mass rename a tag to something else in all objects todo: before moving on to the next thing, triage these suggestions as there are many impactful ones - https://rockfish.ayanova.com/default.htm#!/rfcaseEdit/3745 diff --git a/ayanova/src/views/ay-history.vue b/ayanova/src/views/ay-history.vue index 64f2d440..52e9f689 100644 --- a/ayanova/src/views/ay-history.vue +++ b/ayanova/src/views/ay-history.vue @@ -237,6 +237,8 @@ export default { case 6: case 11: return "purple lighten-2"; + case 12: //erase all data + return "brown"; default: return "primary lighten-2"; } @@ -449,7 +451,8 @@ function populateEventTypeList(vm) { icon: "fa-plus" }, 10: { name: vm.$ay.t("EventSeedDatabase"), icon: "fa-plus" }, - 11: { name: vm.$ay.t("EventAttachmentModified"), icon: "fa-save" } + 11: { name: vm.$ay.t("EventAttachmentModified"), icon: "fa-save" }, + 12: { name: "ERASE ALL DATA", icon: "fa-egg" } }; }