From 9f7840a9a5f8e2564ae10ca0af55becf09e20919 Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Wed, 22 Jul 2026 01:23:35 +0300 Subject: [PATCH] fix mentions string not applying in chat view --- src/components/post_status_form/post_status_form.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/post_status_form/post_status_form.js b/src/components/post_status_form/post_status_form.js index f3bb19bb2..c98454342 100644 --- a/src/components/post_status_form/post_status_form.js +++ b/src/components/post_status_form/post_status_form.js @@ -287,8 +287,8 @@ const PostStatusForm = { }, newStatusContent() { return this.mentionsLine - ? this.newStatus.status - : this.mentionsString + this.newStatus.status + ? this.mentionsString + this.newStatus.status + : this.newStatus.status }, isEdit() { return typeof this.statusId !== 'undefined' && this.statusId.trim() !== ''