diff options
author | Corey Hulen <corey@hulen.com> | 2016-02-08 08:33:51 -0800 |
---|---|---|
committer | Corey Hulen <corey@hulen.com> | 2016-02-08 08:33:51 -0800 |
commit | 557157a979e9e473b442424c49821a24e45c7bdb (patch) | |
tree | 51ef90bfbde1e65f327d0fec7ce5d038ab9decc6 /web/react/components/user_settings | |
parent | 96cb7345dafbf07027acb9dc05fc7d0808a4ac38 (diff) | |
parent | 8dac8cc6f1faeab1bf75521f3915a0645ada58c6 (diff) | |
download | chat-557157a979e9e473b442424c49821a24e45c7bdb.tar.gz chat-557157a979e9e473b442424c49821a24e45c7bdb.tar.bz2 chat-557157a979e9e473b442424c49821a24e45c7bdb.zip |
Merge pull request #2100 from asaadmahmoodspin/ui-improvements
Multiple UI Improvements
Diffstat (limited to 'web/react/components/user_settings')
-rw-r--r-- | web/react/components/user_settings/manage_command_hooks.jsx | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/web/react/components/user_settings/manage_command_hooks.jsx b/web/react/components/user_settings/manage_command_hooks.jsx index 948ab7885..d23d2957e 100644 --- a/web/react/components/user_settings/manage_command_hooks.jsx +++ b/web/react/components/user_settings/manage_command_hooks.jsx @@ -530,17 +530,19 @@ export default class ManageCommandCmds extends React.Component { /> </label> <div className='padding-top'> - <label> - <input - type='checkbox' - checked={this.state.cmd.auto_complete} - onChange={this.updateAutoComplete} - /> - <FormattedMessage - id='user.settings.cmds.auto_complete_help' - defaultMessage='Show this command in autocomplete list' - /> - </label> + <div className='checkbox'> + <label> + <input + type='checkbox' + checked={this.state.cmd.auto_complete} + onChange={this.updateAutoComplete} + /> + <FormattedMessage + id='user.settings.cmds.auto_complete_help' + defaultMessage=' Show this command in autocomplete list' + /> + </label> + </div> </div> </div> <div className='padding-top x2'> @@ -637,7 +639,7 @@ export default class ManageCommandCmds extends React.Component { </div> {addError} </div> - <div className='padding-top padding-bottom'> + <div className='padding-top x2 padding-bottom'> <a className={'btn btn-sm btn-primary'} href='#' |