From a685f7e9f25f11c03a13d835d08f2cd33a5d1110 Mon Sep 17 00:00:00 2001 From: Henrik Askjer <henrik.askjer@uib.no> Date: Tue, 4 Jan 2022 16:45:43 +0100 Subject: [PATCH] info icon in inflection suggestions --- src/components/DictionaryView.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/DictionaryView.vue b/src/components/DictionaryView.vue index 19444057..ae317830 100644 --- a/src/components/DictionaryView.vue +++ b/src/components/DictionaryView.vue @@ -7,7 +7,7 @@ </div> <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 + <div id="suggestions" v-if="!article && inflection_suggestions && inflection_suggestions.length"><v-icon left color="primary">info</v-icon><em>{{$route.query.q}}</em> er en 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-1? '.' : ', '}}</span> </div> -- GitLab