diff --git a/frontend/src/js/dialog/wb-new-project-dialog.js b/frontend/src/js/dialog/wb-new-project-dialog.js index f5a897e..c1ffa3a 100644 --- a/frontend/src/js/dialog/wb-new-project-dialog.js +++ b/frontend/src/js/dialog/wb-new-project-dialog.js @@ -26,13 +26,16 @@ class WBNewProjectDialog extends Component { this.dialogRef.current.hide(); } - render({ app }, { ownerUuid, newName, placeholderName, callback, inputId }) { + render({ app }, { ownerUuid, newName, placeholderName, callback, inputId, + projectDescription }) { + const { arvHost, arvToken } = app.state; return ( { const group = { 'group_class': 'project', 'name': newName || placeholderName, + 'description': projectDescription || null, 'owner_uuid': ownerUuid }; makeArvadosRequest(arvHost, arvToken, @@ -42,9 +45,18 @@ class WBNewProjectDialog extends Component { ).then(callback); } }>
- +
+ + +
+
+ + +
);