From e0f51a424ea4ebeebe5a70d11f9359d124709ba8 Mon Sep 17 00:00:00 2001 From: Vitaliy Vlasov Date: Mon, 10 Sep 2018 13:34:43 +0300 Subject: [PATCH] Change 'Clear history' and 'Delete chat' link color to black --- src/status_im/ui/screens/desktop/main/chat/views.cljs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/status_im/ui/screens/desktop/main/chat/views.cljs b/src/status_im/ui/screens/desktop/main/chat/views.cljs index 069f0853c9..93732a1130 100644 --- a/src/status_im/ui/screens/desktop/main/chat/views.cljs +++ b/src/status_im/ui/screens/desktop/main/chat/views.cljs @@ -51,10 +51,10 @@ :on-press #(re-frame/dispatch [:show-profile-desktop whisper-identity])} (i18n/label :t/view-profile)]) - [react/text {:style (styles/profile-actions-text colors/red) + [react/text {:style (styles/profile-actions-text colors/black) :on-press #(re-frame/dispatch [:chat.ui/clear-history-pressed])} (i18n/label :t/clear-history)] - [react/text {:style (styles/profile-actions-text colors/red) + [react/text {:style (styles/profile-actions-text colors/black) :on-press #(re-frame/dispatch [:chat.ui/delete-chat-pressed chat-id])} (i18n/label :t/delete-chat)]]]))