Bugfixes, Postgres improved support

This commit is contained in:
2020-06-25 16:54:58 +02:00
parent 2bbc895496
commit a0b935c082
19 changed files with 350 additions and 125 deletions

View File

@@ -126,7 +126,7 @@ export default class CreateGroup extends React.Component {
this.setState({...this.state, name: "", color: "", alerts: alerts, isSubmitting: false});
} else {
alerts.push({message: res.msg, title: "Error creating Group", type: "danger"});
this.setState({...this.state, name: "", color: "", alerts: alerts, isSubmitting: false});
this.setState({...this.state, alerts: alerts, isSubmitting: false});
}
});
}