diff --git a/CHANGELOG.md b/CHANGELOG.md index c9f83666..c53dbc2e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,9 @@ # 0.90.62 (07-30-2020) - Added Notification logs -- Fixed issues with notifications +- Fixed issues with Notifer After (x) failures for notifications +- Modified notifications to not send on initial startup - Updated Incident UI - Added additional testing for notifications -- # 0.90.61 (07-22-2020) - Modified sass layouts, organized and split up sections diff --git a/frontend/src/components/Elements/IncidentUpdate.vue b/frontend/src/components/Elements/IncidentUpdate.vue index 1917d5ee..675e9fa7 100644 --- a/frontend/src/components/Elements/IncidentUpdate.vue +++ b/frontend/src/components/Elements/IncidentUpdate.vue @@ -21,13 +21,16 @@ }, admin: { required: true + }, + onUpdate: { + required: false } }, methods: { async delete_update(update) { this.res = await Api.incident_update_delete(update) if (this.res.status === "success") { - await this.loadUpdates() + this.onUpdate() } }, } diff --git a/frontend/src/components/Index/IncidentsBlock.vue b/frontend/src/components/Index/IncidentsBlock.vue index 8c71496d..da537404 100644 --- a/frontend/src/components/Index/IncidentsBlock.vue +++ b/frontend/src/components/Index/IncidentsBlock.vue @@ -6,7 +6,6 @@ {{niceDate(incident.created_at)}}
- @@ -18,7 +17,9 @@ import IncidentUpdate from "@/components/Elements/IncidentUpdate"; export default { name: 'IncidentsBlock', - components: {IncidentUpdate}, + components: { + IncidentUpdate + }, props: { service: { type: Object, diff --git a/frontend/src/forms/IncidentUpdates.vue b/frontend/src/forms/IncidentUpdates.vue index 8300d361..c7218015 100644 --- a/frontend/src/forms/IncidentUpdates.vue +++ b/frontend/src/forms/IncidentUpdates.vue @@ -5,9 +5,11 @@ No updates found, create a new Incident Update below. -
- -
+ +
+ +
+
@@ -19,7 +21,7 @@
- +
@@ -36,8 +38,6 @@