Skip to content

Commit

Permalink
[Fixes GeoNode#12170] unable to set advanced contact roles in metadat…
Browse files Browse the repository at this point in the history
…a editor
  • Loading branch information
mwallschlaeger committed Apr 18, 2024
1 parent 75edcdb commit 4304b96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion geonode/base/widgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def value_from_datadict(self, data, files, name) -> List[str]:
returns list of selected elements
"""
try:
ret_list = data[name]
ret_list = data.getlist(name)
except KeyError:
ret_list = []
finally:
Expand Down

0 comments on commit 4304b96

Please sign in to comment.