This commit is contained in:
2020-04-28 18:58:38 +00:00
parent cb872fad21
commit 6902ad36f3
2 changed files with 7 additions and 1 deletions

View File

@@ -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

View File

@@ -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" }
};
}