Merge pull request #2611 from mattermost/mfa-typo

Fix typo preventing saving of MFA setting in system console
Этот коммит содержится в:
Christopher Speller
2016-04-01 12:05:25 -04:00
родитель 9241f799dd 5840e4824d
Коммит 8adf8ac2eb

Просмотреть файл

@@ -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;
}