Adding sync now button to system console (#3510)

Этот коммит содержится в:
Christopher Speller
2016-07-06 17:17:37 -04:00
коммит произвёл Corey Hulen
родитель 7b6e8d788b
Коммит 31a0f65973
3 изменённых файлов: 120 добавлений и 0 удалений

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

@@ -7,6 +7,8 @@ import ConnectionSecurityDropdownSetting from './connection_security_dropdown_se
import SettingsGroup from './settings_group.jsx';
import TextSetting from './text_setting.jsx';
import SyncNowButton from './sync_now_button.jsx';
import * as Utils from 'utils/utils.jsx';
import React from 'react';
@@ -428,6 +430,9 @@ export default class LdapSettings extends AdminSettings {
onChange={this.handleChange}
disabled={!this.state.enable}
/>
<SyncNowButton
disabled={!this.state.enable}
/>
</SettingsGroup>
);
}