From fae604b31f3be0414f63662e47fa16c354100f39 Mon Sep 17 00:00:00 2001 From: Vitaliy Vlasov Date: Thu, 2 May 2019 20:59:09 +0300 Subject: [PATCH] Fix group chat info labels Signed-off-by: Andrey Shovkoplyas --- src/status_im/ui/screens/profile/group_chat/styles.cljs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/status_im/ui/screens/profile/group_chat/styles.cljs b/src/status_im/ui/screens/profile/group_chat/styles.cljs index c459c3d302..2b6892b279 100644 --- a/src/status_im/ui/screens/profile/group_chat/styles.cljs +++ b/src/status_im/ui/screens/profile/group_chat/styles.cljs @@ -9,7 +9,8 @@ {:background-color (colors/alpha colors/blue 0.1) :border-radius 50}) -(def action-label +; Action label style is expected to be a fn +(defn action-label [_] {:color colors/blue}) (def action-separator @@ -18,4 +19,4 @@ :margin-left 50}) (def action-icon-opts - {:color colors/blue}) \ No newline at end of file + {:color colors/blue})