summaryrefslogtreecommitdiffstats
path: root/web/react/components/more_channels.jsx
diff options
context:
space:
mode:
authorAsaad Mahmood <Unknowngi@live.com>2015-10-16 18:06:22 +0500
committerAsaad Mahmood <Unknowngi@live.com>2015-10-16 18:06:22 +0500
commitb00ffa83e7371fa7dd4570130ee8b506943aee01 (patch)
treecb6996d0534bd3512605f68c32b4beb971c8c469 /web/react/components/more_channels.jsx
parent12f47b10606b88ab0fbc16f1800ffeffe6eb19bf (diff)
downloadchat-b00ffa83e7371fa7dd4570130ee8b506943aee01.tar.gz
chat-b00ffa83e7371fa7dd4570130ee8b506943aee01.tar.bz2
chat-b00ffa83e7371fa7dd4570130ee8b506943aee01.zip
Multiple UI Improvements
Diffstat (limited to 'web/react/components/more_channels.jsx')
-rw-r--r--web/react/components/more_channels.jsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/web/react/components/more_channels.jsx b/web/react/components/more_channels.jsx
index a20c5cad5..a0084ad30 100644
--- a/web/react/components/more_channels.jsx
+++ b/web/react/components/more_channels.jsx
@@ -83,7 +83,7 @@ export default class MoreChannels extends React.Component {
moreChannels = <LoadingScreen />;
} else if (channels.length) {
moreChannels = (
- <table className='more-channel-table table'>
+ <table className='more-table table'>
<tbody>
{channels.map(function cMap(channel, index) {
var joinButton;
@@ -108,8 +108,8 @@ export default class MoreChannels extends React.Component {
return (
<tr key={channel.id}>
<td>
- <p className='more-channel-name'>{channel.display_name}</p>
- <p className='more-channel-description'>{channel.description}</p>
+ <p className='more-name'>{channel.display_name}</p>
+ <p className='more-description'>{channel.description}</p>
</td>
<td className='td--action'>
{joinButton}