Skip to content

Commit

Permalink
Changed key values from boolen to string
Browse files Browse the repository at this point in the history
  • Loading branch information
gurman10 committed Jan 3, 2025
1 parent 1384a77 commit 41ce1dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ckanext/bcgov/util/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -370,8 +370,8 @@ def get_orgs_form(field = None):
context = {'model': model, 'session': model.Session,
'user': c.user, 'auth_user_obj': c.userobj}
data_dict = {
'is_organization': True,
'all_fields': True
'is_organization': 'True',
'all_fields': 'True'
}
all_orgs_data = get_action('organization_or_group_list_related')(context, data_dict)
log.info('all_orgs_data :')
Expand Down

0 comments on commit 41ce1dd

Please sign in to comment.