Skip to content

Commit

Permalink
[Fixes #12170] unable to set advanced contact roles in metadata editor
Browse files Browse the repository at this point in the history
  • Loading branch information
mwallschlaeger authored and giohappy committed Apr 26, 2024
1 parent 3d6ab6e commit b8f0872
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 b8f0872

Please sign in to comment.