This commit is contained in:
Florian Scholdei
2019-09-19 10:50:55 +02:00
parent 78feb1e731
commit b0089c212d
2 changed files with 20 additions and 25 deletions

View File

@@ -15,7 +15,6 @@ class MemberNameTable extends React.Component<Props, State> {
render() { render() {
const { t } = this.props; const { t } = this.props;
return ( return (
<div>
<table className="table is-hoverable is-fullwidth"> <table className="table is-hoverable is-fullwidth">
<tbody> <tbody>
{this.props.members.map(member => { {this.props.members.map(member => {
@@ -35,7 +34,6 @@ class MemberNameTable extends React.Component<Props, State> {
})} })}
</tbody> </tbody>
</table> </table>
</div>
); );
} }

View File

@@ -55,10 +55,7 @@ class GroupForm extends React.Component<Props, State> {
} }
isFalsy(value) { isFalsy(value) {
if (!value) { return !value;
return true;
}
return false;
} }
isValid = () => { isValid = () => {