From 3cbe3dc103d393876b734624ee726f054a8a1b86 Mon Sep 17 00:00:00 2001 From: psdp <4315882+psdp@users.noreply.github.com> Date: Fri, 20 Apr 2018 21:32:51 +0800 Subject: [PATCH] Allow non-admin users to see participants profiles in group chat settings (#3934) Signed-off-by: Goran Jovic --- src/status_im/ui/screens/profile/group_chat/views.cljs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/status_im/ui/screens/profile/group_chat/views.cljs b/src/status_im/ui/screens/profile/group_chat/views.cljs index 3d7c5a0ebe..f308bde0ff 100644 --- a/src/status_im/ui/screens/profile/group_chat/views.cljs +++ b/src/status_im/ui/screens/profile/group_chat/views.cljs @@ -79,7 +79,8 @@ :extend-title (:name contact) :extended? admin? :accessibility-label :member-item - :inner-props {:accessibility-label :member-name-text}}]]) + :inner-props {:accessibility-label :member-name-text} + :on-press #(re-frame/dispatch [:show-profile (:whisper-identity contact)])}]]) (defview chat-group-contacts-view [admin?] (letsubs [contacts [:get-current-chat-contacts]]