From 9a4779cdd1bba28e347530c1b8438170b85d025f Mon Sep 17 00:00:00 2001 From: kolaente Date: Tue, 23 Feb 2021 19:17:45 +0100 Subject: [PATCH] Fix team name in team member added notification --- src/models/notification.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/models/notification.js b/src/models/notification.js index c37e117d..7d891f94 100644 --- a/src/models/notification.js +++ b/src/models/notification.js @@ -76,7 +76,7 @@ export default class NotificationModel extends AbstractModel { who = 'you' } - return `added ${who} to the ${this.notification.team.title} team` + return `added ${who} to the ${this.notification.team.name} team` } return ''