summaryrefslogtreecommitdiffstats
path: root/web/react/components/search_results.jsx
diff options
context:
space:
mode:
authorReed Garmsen <rgarmsen2295@gmail.com>2015-07-19 20:31:37 -0700
committerReed Garmsen <rgarmsen2295@gmail.com>2015-07-19 20:31:37 -0700
commit12c19e3390fa501b25b1b746ddc3f48e525d7fff (patch)
tree903a43ab748e229e5a1bc6b71ed25ad3e1bf2ad2 /web/react/components/search_results.jsx
parent876ad10f6f14579336a89c36b4937311326149d4 (diff)
downloadchat-12c19e3390fa501b25b1b746ddc3f48e525d7fff.tar.gz
chat-12c19e3390fa501b25b1b746ddc3f48e525d7fff.tar.bz2
chat-12c19e3390fa501b25b1b746ddc3f48e525d7fff.zip
Added channel name to RHS comment threads; minor css changes to compensate for addition
Diffstat (limited to 'web/react/components/search_results.jsx')
-rw-r--r--web/react/components/search_results.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/react/components/search_results.jsx b/web/react/components/search_results.jsx
index 1fd974642..643ad112b 100644
--- a/web/react/components/search_results.jsx
+++ b/web/react/components/search_results.jsx
@@ -77,7 +77,7 @@ var SearchItem = React.createClass({
var message = utils.textToJsx(this.props.post.message, {searchTerm: this.props.term, noMentionHighlight: !this.props.isMentionSearch});
var channelName = "";
- var channel = ChannelStore.get(this.props.post.channel_id)
+ var channel = ChannelStore.get(this.props.post.channel_id);
var timestamp = UserStore.getCurrentUser().update_at;
if (channel) {