summaryrefslogtreecommitdiffstats
path: root/webapp/components/post_view/reaction_list
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/post_view/reaction_list')
-rw-r--r--webapp/components/post_view/reaction_list/index.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/webapp/components/post_view/reaction_list/index.js b/webapp/components/post_view/reaction_list/index.js
index 4fc9355d9..ee807ca88 100644
--- a/webapp/components/post_view/reaction_list/index.js
+++ b/webapp/components/post_view/reaction_list/index.js
@@ -4,7 +4,7 @@
import {connect} from 'react-redux';
import {bindActionCreators} from 'redux';
import {makeGetReactionsForPost} from 'mattermost-redux/selectors/entities/posts';
-import {getCustomEmojisAsMap} from 'mattermost-redux/selectors/entities/emojis';
+import {getCustomEmojisByName} from 'mattermost-redux/selectors/entities/emojis';
import * as Actions from 'mattermost-redux/actions/posts';
@@ -17,7 +17,7 @@ function makeMapStateToProps() {
return {
...ownProps,
reactions: getReactionsForPost(state, ownProps.post.id),
- emojis: getCustomEmojisAsMap(state)
+ emojis: getCustomEmojisByName(state)
};
};
}