From fb3c8688006b13a56637b625be36be7a060b12c2 Mon Sep 17 00:00:00 2001 From: Henrik Askjer <henrik.askjer@uib.no> Date: Wed, 15 Dec 2021 13:11:30 +0100 Subject: [PATCH] remove tabindex --- src/components/Article.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Article.vue b/src/components/Article.vue index 795ae9ec..b072d8cf 100644 --- a/src/components/Article.vue +++ b/src/components/Article.vue @@ -16,8 +16,8 @@ <DefElement v-for="(element, index) in article.body.etymology" :dictionary="dictionary" :key="index" :body='element' @article-click="article_link_click" /> </ul> </section> - <section class="definitions" v-if="has_content" tabindex="0"> - <h3 tabindex="0">{{def_label}}</h3> + <section class="definitions" v-if="has_content"> + <h3>{{def_label}}</h3> <ol> <Definition v-for="definition in article.body.definitions" :dictionary="dictionary" :level="1" :key="definition.id" :body='definition' @article-click="article_link_click" /> </ol> -- GitLab