diff --git a/web/react/components/mention.jsx b/web/react/components/mention.jsx
index 3c33ddf493..520b81cbb1 100644
--- a/web/react/components/mention.jsx
+++ b/web/react/components/mention.jsx
@@ -1,5 +1,6 @@
// Copyright (c) 2015 Spinpunch, Inc. All Rights Reserved.
// See License.txt for license information.
+var UserStore = require("../stores/user_store.jsx");
module.exports = React.createClass({
handleClick: function() {
@@ -7,8 +8,9 @@ module.exports = React.createClass({
},
render: function() {
var icon;
+ var timestamp = UserStore.getCurrentUser().update_at;
if (this.props.id != null) {
- icon =

;
+ icon =

;
} else {
icon =
;
}
diff --git a/web/react/components/post_right.jsx b/web/react/components/post_right.jsx
index d48b0f0ef0..408fbf83ac 100644
--- a/web/react/components/post_right.jsx
+++ b/web/react/components/post_right.jsx
@@ -228,11 +228,12 @@ CommentPost = React.createClass({
}
var message = utils.textToJsx(this.props.post.message);
+ var timestamp = UserStore.getCurrentUser().update_at;
return (
-

+
diff --git a/web/react/components/search_results.jsx b/web/react/components/search_results.jsx
index 003a38b7ee..156cf0120e 100644
--- a/web/react/components/search_results.jsx
+++ b/web/react/components/search_results.jsx
@@ -76,6 +76,7 @@ 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 timestamp = UserStore.getCurrentUser().update_at;
if (channel) {
if (channel.type === 'D') {
@@ -89,7 +90,7 @@ SearchItem = React.createClass({
{ channelName }
-

+
diff --git a/web/react/utils/utils.jsx b/web/react/utils/utils.jsx
index a5ed08d671..5ded0e76f5 100644
--- a/web/react/utils/utils.jsx
+++ b/web/react/utils/utils.jsx
@@ -707,7 +707,6 @@ module.exports.switchChannel = function(channel, teammate_name) {
AsyncClient.getChannels(true, true, true);
AsyncClient.getChannelExtraInfo(true);
AsyncClient.getPosts(true, channel.id);
- AsyncClient.getProfiles();
$('.inner__wrap').removeClass('move--right');
$('.sidebar--left').removeClass('move--right');