This commit is contained in:
2020-05-14 15:15:57 +00:00
parent befa759892
commit e6b2a62bd0

View File

@@ -238,6 +238,7 @@ export default {
case 11: case 11:
return "indigo"; return "indigo";
case 12: //erase all data case 12: //erase all data
case 13: //reset serial number
return "deep-purple"; return "deep-purple";
default: default:
return "primary"; return "primary";
@@ -452,7 +453,8 @@ function populateEventTypeList(vm) {
}, },
10: { name: vm.$ay.t("EventSeedDatabase"), 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-seedling" } 12: { name: "ERASE ALL DATA", icon: "fa-seedling" },
13: { name: vm.$ay.t("EventResetSerial"), icon: "fa-egg" }
}; };
} }