Fix reaction deck dispatch error
This commit is contained in:
parent
7bd14cef25
commit
8e794d50b5
1 changed files with 2 additions and 3 deletions
|
@ -45,7 +45,7 @@ const StrictModeDroppable = ({ children, ...props }) => {
|
||||||
const customEmojiMap = createSelector([state => state.get('custom_emojis')], items => items.reduce((map, emoji) => map.set(emoji.get('shortcode'), emoji), ImmutableMap()));
|
const customEmojiMap = createSelector([state => state.get('custom_emojis')], items => items.reduce((map, emoji) => map.set(emoji.get('shortcode'), emoji), ImmutableMap()));
|
||||||
|
|
||||||
const messages = defineMessages({
|
const messages = defineMessages({
|
||||||
refresh: { id: 'refresh', defaultMessage: 'Refresh' },
|
reaction_deck_add: { id: 'reaction_deck.add', defaultMessage: 'Add' },
|
||||||
heading: { id: 'column.reaction_deck', defaultMessage: 'Reaction deck' },
|
heading: { id: 'column.reaction_deck', defaultMessage: 'Reaction deck' },
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -63,7 +63,6 @@ class ReactionDeck extends ImmutablePureComponent {
|
||||||
|
|
||||||
static propTypes = {
|
static propTypes = {
|
||||||
params: PropTypes.object.isRequired,
|
params: PropTypes.object.isRequired,
|
||||||
dispatch: PropTypes.func.isRequired,
|
|
||||||
deck: ImmutablePropTypes.list,
|
deck: ImmutablePropTypes.list,
|
||||||
emojiMap: ImmutablePropTypes.map,
|
emojiMap: ImmutablePropTypes.map,
|
||||||
multiColumn: PropTypes.bool,
|
multiColumn: PropTypes.bool,
|
||||||
|
@ -147,7 +146,7 @@ class ReactionDeck extends ImmutablePureComponent {
|
||||||
))}
|
))}
|
||||||
{provided.placeholder}
|
{provided.placeholder}
|
||||||
|
|
||||||
<Button text='Add' onClick={this.handleAdd} />
|
<Button text={intl.formatMessage(messages.reaction_deck_add)} onClick={this.handleAdd} />
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
</StrictModeDroppable>
|
</StrictModeDroppable>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue