From 4c396a130e344fb10c58b9a0e872f291620a0c3c Mon Sep 17 00:00:00 2001 From: Gustavo Nunes Date: Tue, 23 May 2017 23:31:59 -0300 Subject: [PATCH] fix hour format --- src/status_im/components/drawer/view.cljs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/status_im/components/drawer/view.cljs b/src/status_im/components/drawer/view.cljs index ef304f3eac..b4698484dc 100644 --- a/src/status_im/components/drawer/view.cljs +++ b/src/status_im/components/drawer/view.cljs @@ -108,7 +108,7 @@ [view {:style st/transaction-details-container} [text {:style st/transaction-to} (i18n/label :t/to)] [text {:style st/transaction-recipient :number-of-lines 1} recipient-name] - [text {:style st/transaction-time} (time/format-date "dd MMM hh:mm" (time/to-date timestamp))]]] + [text {:style st/transaction-time} (time/format-date "dd MMM HH:mm" (time/to-date timestamp))]]] [view {:style st/transaction-picture} (when recipient [ci/chat-icon (:photo-path recipient) {:size 40}])]]]))