summaryrefslogtreecommitdiffstats
path: root/webapp/components
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2016-04-01 12:05:25 -0400
committerChristopher Speller <crspeller@gmail.com>2016-04-01 12:05:25 -0400
commit8adf8ac2eb5c905fb3824be993b5d65670e33940 (patch)
tree8ad1c6e64543c0ed070be1d2433ee8608de76ddb /webapp/components
parent9241f799dd59db14dd06b0536db9cb820b1b60db (diff)
parent5840e4824d5415a1c97fd8cdb8c287dfec7e5e54 (diff)
downloadchat-8adf8ac2eb5c905fb3824be993b5d65670e33940.tar.gz
chat-8adf8ac2eb5c905fb3824be993b5d65670e33940.tar.bz2
chat-8adf8ac2eb5c905fb3824be993b5d65670e33940.zip
Merge pull request #2611 from mattermost/mfa-typo
Fix typo preventing saving of MFA setting in system console
Diffstat (limited to 'webapp/components')
-rw-r--r--webapp/components/admin_console/service_settings.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/webapp/components/admin_console/service_settings.jsx b/webapp/components/admin_console/service_settings.jsx
index c72c97326..2c3f4081c 100644
--- a/webapp/components/admin_console/service_settings.jsx
+++ b/webapp/components/admin_console/service_settings.jsx
@@ -87,7 +87,7 @@ class ServiceSettings extends React.Component {
config.ServiceSettings.EnableCommands = ReactDOM.findDOMNode(this.refs.EnableCommands).checked;
config.ServiceSettings.EnableOnlyAdminIntegrations = ReactDOM.findDOMNode(this.refs.EnableOnlyAdminIntegrations).checked;
- if (this.refs.EnablMultifactorAuthentication) {
+ if (this.refs.EnableMultifactorAuthentication) {
config.ServiceSettings.EnableMultifactorAuthentication = ReactDOM.findDOMNode(this.refs.EnableMultifactorAuthentication).checked;
}