Skip to content

Commit d74cc72

Browse files
authored
fix(service): allow editing datasets without creator email (#3664)
1 parent 5954aac commit d74cc72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

renku/ui/service/controllers/datasets_edit.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def renku_op(self):
7373

7474
creators: Union[NoValueType, List[Person]]
7575
if "creators" in self.ctx:
76-
creators, warnings = construct_creators(self.ctx.get("creators")) # type: ignore
76+
creators, warnings = construct_creators(self.ctx.get("creators"), ignore_email=True) # type: ignore
7777
else:
7878
creators = NO_VALUE
7979

0 commit comments

Comments
 (0)