summaryrefslogtreecommitdiffstats
path: root/web/react/components/user_settings/manage_command_hooks.jsx
diff options
context:
space:
mode:
authorCorey Hulen <corey@hulen.com>2016-02-09 08:20:02 -0800
committerCorey Hulen <corey@hulen.com>2016-02-09 08:20:02 -0800
commit63f830938b732258ea481f46076a88bfa8ebcd8c (patch)
tree5dad15ef1b1ed9fd72b676b0e62adb79ce1d61a2 /web/react/components/user_settings/manage_command_hooks.jsx
parentffcca796c3b7f14eac52d4d1542105ef03b047a5 (diff)
parent65a00cbcf52dfc9bcd43112f2e420fad4798f2e1 (diff)
downloadchat-63f830938b732258ea481f46076a88bfa8ebcd8c.tar.gz
chat-63f830938b732258ea481f46076a88bfa8ebcd8c.tar.bz2
chat-63f830938b732258ea481f46076a88bfa8ebcd8c.zip
Merge pull request #2114 from asaadmahmoodspin/ui-improvements
Multiple UI Improvements
Diffstat (limited to 'web/react/components/user_settings/manage_command_hooks.jsx')
-rw-r--r--web/react/components/user_settings/manage_command_hooks.jsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/web/react/components/user_settings/manage_command_hooks.jsx b/web/react/components/user_settings/manage_command_hooks.jsx
index d23d2957e..3656424b2 100644
--- a/web/react/components/user_settings/manage_command_hooks.jsx
+++ b/web/react/components/user_settings/manage_command_hooks.jsx
@@ -271,7 +271,7 @@ export default class ManageCommandCmds extends React.Component {
cmds.push(
<div
key={cmd.id}
- className='webcmd__item'
+ className='webhook__item webcmd__item'
>
<div className='padding-top x2'>
<strong>
@@ -400,7 +400,7 @@ export default class ManageCommandCmds extends React.Component {
}
const existingCmds = (
- <div className='webcmds__container'>
+ <div className='webhooks__container webcmds__container'>
<label className='control-label padding-top x2'>
<FormattedMessage
id='user.settings.cmds.existing'
@@ -408,7 +408,7 @@ export default class ManageCommandCmds extends React.Component {
/>
</label>
<div className='padding-top divider-light'></div>
- <div className='webcmds__list'>
+ <div className='webhooks__list webcmds__list'>
{displayCmds}
</div>
</div>