[FIX #2423] ui: fix typo in render-public-chats-item
This commit is contained in:
parent
feed287457
commit
5ef8ea4c0c
|
@ -127,8 +127,7 @@
|
||||||
(re-frame/dispatch [:create-new-public-chat topic]))
|
(re-frame/dispatch [:create-new-public-chat topic]))
|
||||||
|
|
||||||
(defn render-public-chats-item [{:keys [name color topic] :as item}]
|
(defn render-public-chats-item [{:keys [name color topic] :as item}]
|
||||||
[react/touchable-highlight {:on-press #(navigate-to-public-chat topic)}]
|
[react/touchable-highlight {:on-press #(navigate-to-public-chat topic)}
|
||||||
|
|
||||||
[react/view styles/public-chats-item-container
|
[react/view styles/public-chats-item-container
|
||||||
[react/view styles/public-chats-icon-container
|
[react/view styles/public-chats-icon-container
|
||||||
[react/view (styles/public-chats-icon color)
|
[react/view (styles/public-chats-icon color)
|
||||||
|
@ -142,7 +141,7 @@
|
||||||
name]]
|
name]]
|
||||||
[react/view {}
|
[react/view {}
|
||||||
[react/text {:style {:color :lightgray}}
|
[react/text {:style {:color :lightgray}}
|
||||||
(str "#" topic)]]]])
|
(str "#" topic)]]]]])
|
||||||
|
|
||||||
(defn public-chats-teaser []
|
(defn public-chats-teaser []
|
||||||
[react/view styles/public-chats-container
|
[react/view styles/public-chats-container
|
||||||
|
|
Loading…
Reference in New Issue