From 4757b06dfb5ad5f15e5efa1dc0405723051abe63 Mon Sep 17 00:00:00 2001 From: deme Date: Thu, 19 Jul 2018 00:24:19 +0200 Subject: [PATCH] [#5031] Remove additional # to chat title when it is a public chat Signed-off-by: Andrey Shovkoplyas --- src/status_im/chat/screen.cljs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/status_im/chat/screen.cljs b/src/status_im/chat/screen.cljs index 1734ba747c..6441382423 100644 --- a/src/status_im/chat/screen.cljs +++ b/src/status_im/chat/screen.cljs @@ -39,7 +39,7 @@ [react/i18n-text {:style style/add-contact-text :key :add-to-contacts}]]]))) (defn- on-options [chat-id chat-name group-chat? public?] - (list-selection/show {:title (if public? (str "#" chat-name) chat-name) + (list-selection/show {:title chat-name :options (actions/actions group-chat? chat-id public?)})) (defview chat-toolbar [public?]