Skip to content

Commit

Permalink
fix(service): allow editing datasets without creator email (#3664)
Browse files Browse the repository at this point in the history
  • Loading branch information
Panaetius committed Jan 3, 2024
1 parent 5954aac commit d74cc72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion renku/ui/service/controllers/datasets_edit.py
Expand Up @@ -73,7 +73,7 @@ def renku_op(self):

creators: Union[NoValueType, List[Person]]
if "creators" in self.ctx:
creators, warnings = construct_creators(self.ctx.get("creators")) # type: ignore
creators, warnings = construct_creators(self.ctx.get("creators"), ignore_email=True) # type: ignore
else:
creators = NO_VALUE

Expand Down

0 comments on commit d74cc72

Please sign in to comment.