From 26a8e19a357aee9e1b39623e604ce92bdfaa00df Mon Sep 17 00:00:00 2001 From: Christopher Speller Date: Fri, 14 Aug 2015 15:03:32 -0400 Subject: Revert "MM-375 Adds text formatting features using a modified version of the marked js library" --- web/react/components/search_results.jsx | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) (limited to 'web/react/components/search_results.jsx') diff --git a/web/react/components/search_results.jsx b/web/react/components/search_results.jsx index 8f6bd861a..643ad112b 100644 --- a/web/react/components/search_results.jsx +++ b/web/react/components/search_results.jsx @@ -84,8 +84,6 @@ var SearchItem = React.createClass({ channelName = (channel.type === 'D') ? "Private Message" : channel.display_name; } - var searchItemKey = Date.now().toString(); - return (
{ channelName }
@@ -101,7 +99,7 @@ var SearchItem = React.createClass({ -
{message}
+
{message}
); @@ -133,7 +131,6 @@ module.exports = React.createClass({ if (this.isMounted()) { var newState = getStateFromStores(); if (!utils.areStatesEqual(newState, this.state)) { - newState.last_edit_time = Date.now(); this.setState(newState); } } @@ -155,11 +152,6 @@ module.exports = React.createClass({ var noResults = (!results || !results.order || !results.order.length); var searchTerm = PostStore.getSearchTerm(); - var searchItemKey = ""; - if (this.state.last_edit_time) { - searchItemKey += this.state.last_edit_time.toString(); - } - return (
{searchForm}
@@ -170,7 +162,7 @@ module.exports = React.createClass({ { noResults ?
No results
: results.order.map(function(id) { var post = results.posts[id]; - return + return }, this) } -- cgit v1.2.3-1-g7c22