diff --git a/src/components/DictionaryView.vue b/src/components/DictionaryView.vue index 936e2af9abdc12c8f03be9b17343f55502a41f01..b71c3ed958d8b2ec36c62316bc1ab140839192ea 100644 --- a/src/components/DictionaryView.vue +++ b/src/components/DictionaryView.vue @@ -189,7 +189,10 @@ function navigate_to_query(self, word) { let total = response.data.articles.bm ? response.data.articles.bm.length : 0 total += response.data.articles.nn ? response.data.articles.nn.length : 0 - if (total == 0) { + if (total == 0) { + if (self.event && self.event.inflection_suggestions) { + self.inflection_suggestions = self.event.inflection_suggestions + } throw new QueryException(query) } else {