diff --git a/src/components/InflectionButton.vue b/src/components/InflectionButton.vue index 183ffb3b22be483f084becf8fd22e9a7f6e26795..9e77b13a45a4077928705032464ce6e8a4eded73 100644 --- a/src/components/InflectionButton.vue +++ b/src/components/InflectionButton.vue @@ -4,7 +4,7 @@ <div class="inflection-wrapper" v-if="inflected && !$parent.collapsed"> <v-btn class="show-inflection" width="160px" rounded depressed small @click.native="toggle" :class="$vuetify.breakpoint.name"> - <span>{{this.inflection_expanded? $t('article.hide_inflection'):$t('article.show_inflection')}}</span><span class = "inflection-arrow"><v-icon right>{{inflection_arrow}}</v-icon></span> + <span>{{this.inflection_expanded? $t('article.hide_inflection'):$t('article.show_inflection')}}</span><span class = "inflection-arrow"><v-icon right>{{this.inflection_expanded? "expand_less" : "expand_more"}}</v-icon></span> </v-btn> <div class="inflection-canvas" v-if="inflection_expanded"> <inflectionTable :lemmaList="lemmas_with_word_class_and_lang" :mq="$vuetify.breakpoint.name" /> @@ -27,12 +27,6 @@ export default { article_id: Number }, computed: { - inflect_tooltip: function() { - return this.dictionary == 'bm' ? 'Klikk for å se bøyinger' : 'Klikk for å sjå bøyingar' - }, - inflection_arrow: function() { - return this.inflection_expanded? "expand_less" : "expand_more" - }, group_list: function() { return helpers.group_list(this.lemmas, this.dictionary) },