summaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
authorAsaad Mahmood <Unknowngi@live.com>2015-10-18 20:03:34 +0500
committerAsaad Mahmood <Unknowngi@live.com>2015-10-18 20:03:34 +0500
commit2a67116e7158a177ba6ac985a654e2e7c7bd4987 (patch)
tree6af3c07fbe0ae8e7fc20263f85fdda2aad88a9b0 /web
parent3a1636b7cea9805c16fcd626917de01a51c6cb2f (diff)
downloadchat-2a67116e7158a177ba6ac985a654e2e7c7bd4987.tar.gz
chat-2a67116e7158a177ba6ac985a654e2e7c7bd4987.tar.bz2
chat-2a67116e7158a177ba6ac985a654e2e7c7bd4987.zip
Updating userEntries div to tr td
Diffstat (limited to 'web')
-rw-r--r--web/react/components/more_direct_channels.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/react/components/more_direct_channels.jsx b/web/react/components/more_direct_channels.jsx
index e99cdc257..105199035 100644
--- a/web/react/components/more_direct_channels.jsx
+++ b/web/react/components/more_direct_channels.jsx
@@ -220,7 +220,7 @@ export default class MoreDirectChannels extends React.Component {
const userEntries = users.map(this.createRowForUser);
if (userEntries.length === 0) {
- userEntries.push(<div key='no-users-found'>{'No users found :('}</div>);
+ userEntries.push(<tr key='no-users-found'><td>{'No users found :('}</td></tr>);
}
let memberString = 'Member';