From dfc972079f2729c60aa56378f244b6dce91e0eb5 Mon Sep 17 00:00:00 2001 From: Lungu Cristian Date: Tue, 3 Oct 2023 11:55:22 +0300 Subject: [PATCH] fix: show hashtag in chat when replying/copying (#17374) --- src/status_im2/contexts/chat/composer/reply/view.cljs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/status_im2/contexts/chat/composer/reply/view.cljs b/src/status_im2/contexts/chat/composer/reply/view.cljs index 88f8c79ab2..c5457e4aea 100644 --- a/src/status_im2/contexts/chat/composer/reply/view.cljs +++ b/src/status_im2/contexts/chat/composer/reply/view.cljs @@ -23,6 +23,9 @@ (= type "mention") (rf/sub [:messages/resolve-mention literal]) + (= type "status-tag") + (str "#" literal) + (seq children) (get-quoted-text-with-mentions children)