diff --git a/corehq/toggles/__init__.py b/corehq/toggles/__init__.py index 062c5348eb12..af668b43834a 100644 --- a/corehq/toggles/__init__.py +++ b/corehq/toggles/__init__.py @@ -1040,23 +1040,24 @@ def _ensure_valid_randomness(randomness): namespaces=[NAMESPACE_DOMAIN] ) -DYNAMICALLY_UPDATE_SEARCH_RESULTS = StaticToggle( - 'dynamically_update_search_results', - "In case search with split screen case search enabled, search results update when a search field is updated" - " without requiring the user to manually press a button to search.", +SPLIT_SCREEN_CASE_SEARCH = StaticToggle( + 'split_screen_case_search', + "Split screen case search: In case search, show the search filters in a sidebar on the left and the results" + " on the right.", TAG_CUSTOM, help_link='https://confluence.dimagi.com/display/USH/Split+Screen+Case+Search', namespaces=[NAMESPACE_DOMAIN], + parent_toggles=[SYNC_SEARCH_CASE_CLAIM] ) -SPLIT_SCREEN_CASE_SEARCH = StaticToggle( - 'split_screen_case_search', - "Split screen case search: In case search, show the search filters in a sidebar on the left and the results" - " on the right.", +DYNAMICALLY_UPDATE_SEARCH_RESULTS = StaticToggle( + 'dynamically_update_search_results', + "In case search with split screen case search enabled, search results update when a search field is updated" + " without requiring the user to manually press a button to search.", TAG_CUSTOM, help_link='https://confluence.dimagi.com/display/USH/Split+Screen+Case+Search', namespaces=[NAMESPACE_DOMAIN], - parent_toggles=[SYNC_SEARCH_CASE_CLAIM, DYNAMICALLY_UPDATE_SEARCH_RESULTS] + parent_toggles=[SPLIT_SCREEN_CASE_SEARCH] ) USH_USERCASES_FOR_WEB_USERS = StaticToggle(