diff --git a/html/template/sync/communication-root.html b/html/template/sync/communication-root.html index 95bbf2bf..8f50e4b3 100644 --- a/html/template/sync/communication-root.html +++ b/html/template/sync/communication-root.html @@ -155,6 +155,10 @@ }, async createSignal() { + console.log( + "Marking report as signal:", + this.selectedCommunication.id, + ); try { const payload = { reportID: this.selectedCommunication.id, @@ -169,6 +173,10 @@ if (!response.ok) { throw new Error("Failed to submit signal"); } + this.showNotification( + "Report Marked Signal", + `Report #${this.selectedCommunication.id} has been marked as useful signal`, + ); // Remove from list after creating lead this.removeCurrentFromList(); this.fetchCommunications();