From b114062c1b8128fe650fce72454ba4f1fcbe5733 Mon Sep 17 00:00:00 2001 From: Harrison Healey Date: Wed, 6 Jul 2016 16:07:56 -0400 Subject: PLT-3237 Update displayed config values in admin console after saving (#3506) * Reloaded admin console data when settings are saved * Fixed attempting to save an invalid config setting overwriting the stored config --- webapp/components/admin_console/connection_settings.jsx | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'webapp/components/admin_console/connection_settings.jsx') diff --git a/webapp/components/admin_console/connection_settings.jsx b/webapp/components/admin_console/connection_settings.jsx index 81fbb9343..8e030b207 100644 --- a/webapp/components/admin_console/connection_settings.jsx +++ b/webapp/components/admin_console/connection_settings.jsx @@ -18,11 +18,6 @@ export default class ConnectionSettings extends AdminSettings { this.getConfigFromState = this.getConfigFromState.bind(this); this.renderSettings = this.renderSettings.bind(this); - - this.state = Object.assign(this.state, { - allowCorsFrom: props.config.ServiceSettings.AllowCorsFrom, - enableInsecureOutgoingConnections: props.config.ServiceSettings.EnableInsecureOutgoingConnections - }); } getConfigFromState(config) { @@ -32,6 +27,13 @@ export default class ConnectionSettings extends AdminSettings { return config; } + getStateFromConfig(config) { + return { + allowCorsFrom: config.ServiceSettings.AllowCorsFrom, + enableInsecureOutgoingConnections: config.ServiceSettings.EnableInsecureOutgoingConnections + }; + } + renderTitle() { return (

-- cgit v1.2.3-1-g7c22