diff --git a/src/components/DictionaryView.vue b/src/components/DictionaryView.vue
index ad157dc835efa50f13b10ec88d1b53c67631a62b..181070bb17ef7007b1a2d3e6e6e5a4b4924cfaf3 100644
--- a/src/components/DictionaryView.vue
+++ b/src/components/DictionaryView.vue
@@ -6,7 +6,7 @@
       <SearchToolbar v-if="$store.state.showSearchToolbar" @updatePos="update_pos"  @updateScope="update_scope"/>
 
     </div>
-    <div id="above_results">
+    <div id="above_results" v-if="$route.name">
     <div id="suggestions" v-if="!article && inflection_suggestions && inflection_suggestions.length">Se også <em>{{$route.query.q}}</em> som bøyd form av
     <span v-for="(item,index) in inflection_suggestions" :key="index"><router-link :to="generate_path(item[0])" @click.native="select_suggestion(item[0])">{{item[0]}}</router-link>{{index == inflection_suggestions.length? '.' : ', '}}</span>
     </div>