summaryrefslogtreecommitdiffstats
path: root/web/react/stores/post_store.jsx
diff options
context:
space:
mode:
authornickago <ngonella@calpoly.edu>2015-08-05 14:43:40 -0700
committernickago <ngonella@calpoly.edu>2015-08-05 14:43:40 -0700
commit47cedd68d6f8c5dfd9c5af826e29342080759b61 (patch)
tree6ad79d2c08c3c8a5f047d20623277627fe42d606 /web/react/stores/post_store.jsx
parent7692e67728cc471a5ac8903a859eba9d82c6429e (diff)
downloadchat-47cedd68d6f8c5dfd9c5af826e29342080759b61.tar.gz
chat-47cedd68d6f8c5dfd9c5af826e29342080759b61.tar.bz2
chat-47cedd68d6f8c5dfd9c5af826e29342080759b61.zip
Removed all functionality required for removing used mentions from auto-complete
Diffstat (limited to 'web/react/stores/post_store.jsx')
-rw-r--r--web/react/stores/post_store.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/react/stores/post_store.jsx b/web/react/stores/post_store.jsx
index ecf54ede6..4aa6ebb3a 100644
--- a/web/react/stores/post_store.jsx
+++ b/web/react/stores/post_store.jsx
@@ -193,7 +193,7 @@ PostStore.dispatchToken = AppDispatcher.register(function(payload) {
PostStore.emitSelectedPostChange(action.from_search);
break;
case ActionTypes.RECIEVED_MENTION_DATA:
- PostStore.emitMentionDataChange(action.id, action.mention_text, action.exclude_list);
+ PostStore.emitMentionDataChange(action.id, action.mention_text);
break;
case ActionTypes.RECIEVED_ADD_MENTION:
PostStore.emitAddMention(action.id, action.username);