Skip to content

Commit

Permalink
Merge pull request #35157 from dimagi/ad/fix-alerts-screen-location-s…
Browse files Browse the repository at this point in the history
…earch

Fix bug with the location search on conditional alerts screen
  • Loading branch information
AddisonDunn authored Oct 3, 2024
2 parents dba3d90 + ea5b53b commit a3f46bf
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions corehq/apps/locations/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -264,10 +264,9 @@ def page_context(self):

class LocationOptionsController(EmwfOptionsController):
namespace_locations = False
case_sharing_only = False

def __init__(self, *args, include_locations_with_no_users=True):
super().__init__(*args)
def __init__(self, *args, include_locations_with_no_users=True, **kwargs):
super().__init__(*args, **kwargs)
self.include_locations_with_no_users = include_locations_with_no_users

@property
Expand Down

0 comments on commit a3f46bf

Please sign in to comment.