Skip to content

Commit

Permalink
_
Browse files Browse the repository at this point in the history
  • Loading branch information
rasom committed May 12, 2019
1 parent a3a2f27 commit 5d050ec
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/status_im/ui/screens/chat/views.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@

(defonce messages-limit (reagent/atom initial-limit))

(defonce limit-enabled? (atom true))
(defonce limit-enabled? (reagent/atom true))

(defn increment-limit [lim]
(+ lim
Expand Down Expand Up @@ -344,8 +344,9 @@
:on-layout (fn [e]
(re-frame/dispatch [:set :layout-height (-> e .-nativeEvent .-layout .-height)]))}
[chat-toolbar current-chat public? modal?]
[messages-view-animation
[messages-view current-chat modal?]]
[react/text {:style {:height 14}}
(str "limit enabled: " @limit-enabled?)]
[messages-view current-chat modal?]
(when (show-input-container? my-public-key current-chat)
[input/container])
(when show-stickers?
Expand Down

0 comments on commit 5d050ec

Please sign in to comment.