From 7c36421d574ad7140b6cb0b10da6af366d6b5c2c Mon Sep 17 00:00:00 2001 From: Roman Volosovskyi Date: Tue, 13 Dec 2016 17:17:47 +0200 Subject: [PATCH] fix #545 --- src/status_im/chat/handlers.cljs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/status_im/chat/handlers.cljs b/src/status_im/chat/handlers.cljs index 0af3fdce69..a2a1072ede 100644 --- a/src/status_im/chat/handlers.cljs +++ b/src/status_im/chat/handlers.cljs @@ -83,6 +83,7 @@ (register-handler :cancel-command (fn [{:keys [current-chat-id] :as db} _] (-> db + (dissoc :canceled-command) (assoc-in [:chats current-chat-id :command-input] {}) (update-in [:chats current-chat-id :input-text] safe-trim))))