diff --git a/app/components/autocomplete/slash_suggestion/slash_suggestion.js b/app/components/autocomplete/slash_suggestion/slash_suggestion.js index 48fcdf02f..91a23780f 100644 --- a/app/components/autocomplete/slash_suggestion/slash_suggestion.js +++ b/app/components/autocomplete/slash_suggestion/slash_suggestion.js @@ -51,7 +51,7 @@ export default class SlashSuggestion extends PureComponent { }; componentWillReceiveProps(nextProps) { - if ((nextProps.value === this.props.value && nextProps.suggestions === this.props.suggestions) || + if ((nextProps.value === this.props.value && nextProps.suggestions === this.props.suggestions && nextProps.commands === this.props.commands) || nextProps.isSearch || nextProps.value.startsWith('//') || !nextProps.channelId) { return; }