diff --git a/webapp/stores/suggestion_store.jsx b/webapp/stores/suggestion_store.jsx index d87b070763..39bea0b0c0 100644 --- a/webapp/stores/suggestion_store.jsx +++ b/webapp/stores/suggestion_store.jsx @@ -121,7 +121,7 @@ class SuggestionStore extends EventEmitter { } addSuggestions(id, terms, items, component, matchedPretext) { - if (this.getPretext(id) !== matchedPretext) { + if (!this.getPretext(id).endsWith(matchedPretext)) { // These suggestions are out of date since the pretext has changed return; }