summaryrefslogtreecommitdiffstats
path: root/web/react/components
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2015-09-29 11:24:52 -0400
committerChristopher Speller <crspeller@gmail.com>2015-09-29 11:24:52 -0400
commitbf61c0336e3fee47e6079c2804596c2079a9e9c5 (patch)
tree4c137e74b8d2be0772a192aecc764e2fed2e6fac /web/react/components
parentd8d850b2f759e4ba54fe56a3ceb1f6e2c8ac2eb6 (diff)
parent3e77df8532a227e4994f9418dc04381d7285d47a (diff)
downloadchat-bf61c0336e3fee47e6079c2804596c2079a9e9c5.tar.gz
chat-bf61c0336e3fee47e6079c2804596c2079a9e9c5.tar.bz2
chat-bf61c0336e3fee47e6079c2804596c2079a9e9c5.zip
Merge pull request #851 from asaadmahmoodspin/plt-479
plt-479 - Fixing command lists and also making them theme compatible
Diffstat (limited to 'web/react/components')
-rw-r--r--web/react/components/command_list.jsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/web/react/components/command_list.jsx b/web/react/components/command_list.jsx
index 553dcabe7..fea7085b7 100644
--- a/web/react/components/command_list.jsx
+++ b/web/react/components/command_list.jsx
@@ -70,8 +70,8 @@ export default class CommandList extends React.Component {
className='command-name'
onClick={this.handleClick.bind(this, i)}
>
- <div className='command__title pull-left'><strong>{this.state.suggestions[i].suggestion}</strong></div>
- <div className='command__desc pull-right'>{this.state.suggestions[i].description}</div>
+ <div className='command__title'><strong>{this.state.suggestions[i].suggestion}</strong></div>
+ <div className='command__desc'>{this.state.suggestions[i].description}</div>
</div>
);
}