From 3d7aec36b5ddab6634f67ef4ba9a37978db30b9c Mon Sep 17 00:00:00 2001 From: Gerhard Schlager Date: Mon, 20 Feb 2023 16:03:45 +0100 Subject: [PATCH] FIX: Wrong interpolation key (#20374) follow-up to 7ef482a2 --- .../assets/javascripts/discourse/components/chat-composer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/chat/assets/javascripts/discourse/components/chat-composer.js b/plugins/chat/assets/javascripts/discourse/components/chat-composer.js index 315083f6fe2..29b0eed2f0a 100644 --- a/plugins/chat/assets/javascripts/discourse/components/chat-composer.js +++ b/plugins/chat/assets/javascripts/discourse/components/chat-composer.js @@ -573,7 +573,7 @@ export default Component.extend(TextareaTextManipulation, { if (chatChannel.isDraft) { if (chatChannel?.chatable?.users?.length) { return I18n.t("chat.placeholder_start_conversation_users", { - usernames: chatChannel.chatable.users + commaSeparatedUsernames: chatChannel.chatable.users .mapBy("username") .join(I18n.t("word_connector.comma")), });