From 03b89e7072ae91b8934eb2cb79595dca24d78b41 Mon Sep 17 00:00:00 2001 From: Liam Fitzgerald Date: Thu, 26 Nov 2020 10:58:54 +1000 Subject: [PATCH] notifications: fix note description render --- pkg/interface/src/views/apps/notifications/graph.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/interface/src/views/apps/notifications/graph.tsx b/pkg/interface/src/views/apps/notifications/graph.tsx index 64fc5c7fd..02351e645 100644 --- a/pkg/interface/src/views/apps/notifications/graph.tsx +++ b/pkg/interface/src/views/apps/notifications/graph.tsx @@ -44,7 +44,7 @@ function describeNotification(description: string, plural: boolean) { return `left ${pluralize("comment", plural)} on`; case "edit-comment": return `updated ${pluralize("comment", plural)} on`; - case "new-note": + case "note": return `posted ${pluralize("note", plural)} to`; case "edit-note": return `updated ${pluralize("note", plural)} in`;