FIX: Wrong interpolation key (#20374)

follow-up to 7ef482a2
This commit is contained in:
Gerhard Schlager 2023-02-20 16:03:45 +01:00 committed by GitHub
parent b50a581c5d
commit 3d7aec36b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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")),
});