From a037d8e793275dea3c440691eaf8759ee3961f43 Mon Sep 17 00:00:00 2001 From: bggRGjQaUbCoE Date: Sun, 28 Dec 2025 20:47:47 +0800 Subject: [PATCH] opt dyn publish Signed-off-by: bggRGjQaUbCoE --- .../publish/common_rich_text_pub_page.dart | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/lib/pages/common/publish/common_rich_text_pub_page.dart b/lib/pages/common/publish/common_rich_text_pub_page.dart index 877368bcd..699519f84 100644 --- a/lib/pages/common/publish/common_rich_text_pub_page.dart +++ b/lib/pages/common/publish/common_rich_text_pub_page.dart @@ -239,11 +239,17 @@ abstract class CommonRichTextPubPageState "biz_id": "", }); case RichTextType.at: - list.add({ - "raw_text": '@${e.rawText}', - "type": 2, - "biz_id": e.id, - }); + list + ..add({ + "raw_text": '@${e.rawText}', + "type": 2, + "biz_id": e.id, + }) + ..add({ + "raw_text": ' ', + "type": 1, + "biz_id": "", + }); case RichTextType.emoji: list.add({ "raw_text": e.rawText,