diff --git a/web/app/src/stores/notifications.js b/web/app/src/stores/notifications.js index e647e841..765c81ed 100644 --- a/web/app/src/stores/notifications.js +++ b/web/app/src/stores/notifications.js @@ -71,6 +71,9 @@ export const useNotifs = defineStore('notifications', { if (workerUpdate.previous_status && workerUpdate.previous_status != workerUpdate.status) { msg += ` changed status ${workerUpdate.previous_status} ➜ ${workerUpdate.status}`; this.add(msg); + } else if (workerUpdate.deleted_at) { + msg += " was removed from the system"; + this.add(msg); } },