-
+
mdi-plus-circle-outlineAdd event
@@ -193,7 +210,6 @@ export default {
"showDeleteEventDialog",
"showNewPreEventDialog",
"togglePin",
-
]),
iconItem(event) {
if (event.description == "Incident created") return "mdi-flare"
@@ -233,8 +249,4 @@ export default {
}
-
-
-
-
diff --git a/src/dispatch/static/dispatch/src/incident/api.js b/src/dispatch/static/dispatch/src/incident/api.js
index 75913165c999..93ab01888b87 100644
--- a/src/dispatch/static/dispatch/src/incident/api.js
+++ b/src/dispatch/static/dispatch/src/incident/api.js
@@ -75,7 +75,7 @@ export default {
createAllResources(incidentId, payload) {
return API.post(`/${resource}/${incidentId}/resources`, payload)
},
- exportTimeline(incidentId, timeline_filters){
+ exportTimeline(incidentId, timeline_filters) {
return API.post(`/${resource}/${incidentId}/exportTimeline`, timeline_filters)
},
}
diff --git a/src/dispatch/static/dispatch/src/incident/store.js b/src/dispatch/static/dispatch/src/incident/store.js
index a1f4897c224f..691af12a3ee7 100644
--- a/src/dispatch/static/dispatch/src/incident/store.js
+++ b/src/dispatch/static/dispatch/src/incident/store.js
@@ -283,7 +283,7 @@ const actions = {
commit("SET_DIALOG_EDIT_EVENT", false)
},
exportDoc({ commit }, timeline_filters) {
- IncidentApi.exportTimeline(state.selected.id,timeline_filters).then((response) => {
+ IncidentApi.exportTimeline(state.selected.id, timeline_filters).then((response) => {
commit("SET_SELECTED", response.data)
})
commit(