disabled button after successful change

This commit is contained in:
Florian Scholdei
2019-01-02 14:24:57 +01:00
parent f752fdbcc6
commit fc4ed8036b

View File

@@ -124,7 +124,7 @@ class Configuration extends React.Component<Props, State> {
modifiedConfiguration, modifiedConfiguration,
this.getContentType() this.getContentType()
) )
.then(() => this.setState({ modifying: false, configChanged: true })) .then(() => this.setState({ modifying: false, configChanged: true, valid: false }))
.catch(this.handleError); .catch(this.handleError);
}; };