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

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