-
Notifications
You must be signed in to change notification settings - Fork 984
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[FIX #2118] ui: store search-key under [:toolbar-search :show] #2585
Conversation
Same comment as #2584 (comment) - sorry to be a stickler but it really makes it easier (and quicker!) for devs and QA to review, test and merge your changes. |
@@ -77,13 +77,13 @@ | |||
(defview chats-list [] | |||
(letsubs [chats [:filtered-chats] | |||
edit? [:get-in [:chat-list-ui-props :edit?]] | |||
search? [:get-in [:toolbar-search :show]] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use of undeclared Var status-im.ui.screens.chats-list.views/search? at line 98 /Users/jenkins/workspace/status-react/parametrized build/src/status_im/ui/screens/chats_list/views.cljs
search?
symbol is used later in this function
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
see comment above
462b563
to
daae98e
Compare
Sorry, lame mistake. Fixed. |
Chat list used to store booleans under [:toolbar-search :show] which is different from other views and caused the issue described in status-im#2118.
daae98e
to
907d3c7
Compare
i've just rebased it onto |
Checked:
|
Addresses #2118.
Summary:
Chat list used to store booleans under [:toolbar-search :show] which is
different from other views and caused the toolbar to appear in Chats if search was used in Discover or Contacts. With this change search key (= :chat-list) is stored under the above path.
Review notes (optional):
Testing notes (optional):
Steps to test:
status: ready