allow creation and modification of groups without description

This commit is contained in:
Sebastian Sdorra
2018-08-08 13:44:14 +02:00
parent fdf49406b9
commit 3ff6129b09

View File

@@ -55,11 +55,7 @@ class GroupForm extends React.Component<Props, State> {
isValid = () => {
const group = this.state.group;
return !(
this.state.nameValidationError ||
this.isFalsy(group.name) ||
this.isFalsy(group.description)
);
return !(this.state.nameValidationError || this.isFalsy(group.name));
};
submit = (event: Event) => {