From fc4ed8036b99ab4d18efce224daf17fd6b37fef5 Mon Sep 17 00:00:00 2001 From: Florian Scholdei Date: Wed, 2 Jan 2019 14:24:57 +0100 Subject: [PATCH] disabled button after successful change --- .../packages/ui-components/src/config/Configuration.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scm-ui-components/packages/ui-components/src/config/Configuration.js b/scm-ui-components/packages/ui-components/src/config/Configuration.js index 415dcb5f11..0eb6f6ffc2 100644 --- a/scm-ui-components/packages/ui-components/src/config/Configuration.js +++ b/scm-ui-components/packages/ui-components/src/config/Configuration.js @@ -124,7 +124,7 @@ class Configuration extends React.Component { modifiedConfiguration, this.getContentType() ) - .then(() => this.setState({ modifying: false, configChanged: true })) + .then(() => this.setState({ modifying: false, configChanged: true, valid: false })) .catch(this.handleError); };