We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10a6d76 commit b8fc6d2Copy full SHA for b8fc6d2
frontend/src/components/navbar/Notification.vue
@@ -95,6 +95,8 @@ const makeMessage = (
95
return "Communication deleted";
96
}
97
return "Thread deleted";
98
+ } else if (notification.name) {
99
+ return `${notification.name} was deleted`;
100
101
return "Deleted";
102
case "TAGGED":
frontend/src/dto/notifications.ts
@@ -35,4 +35,5 @@ export interface Notification {
35
meeting?: string;
36
thread?: string;
37
post?: string;
38
+ name?: string; // human-friendly name of the target entity
39
0 commit comments