From d9066e3dd56e3b887927019be2a617ef6e89593c Mon Sep 17 00:00:00 2001 From: Remi PLANEL <rplanel@pasteur.fr> Date: Thu, 1 Feb 2024 22:02:50 +0100 Subject: [PATCH] put the href attribute to the correct place --- components/content/MolstarPdbePlugin.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/content/MolstarPdbePlugin.vue b/components/content/MolstarPdbePlugin.vue index 12370ec4..f079a137 100644 --- a/components/content/MolstarPdbePlugin.vue +++ b/components/content/MolstarPdbePlugin.vue @@ -171,8 +171,8 @@ const moleculeFormat: Ref<string> = ref("pdb") class="ml-1" v-bind="props"></v-btn> </template> <v-list> - <v-list-item v-for="(item, index) in refinedDataUrls" :key="index" :value="index"> - <v-list-item-title :href="item">{{ item }}</v-list-item-title> + <v-list-item v-for="(item, index) in refinedDataUrls" :key="index" :value="index" :href="item"> + <v-list-item-title>{{ item }}</v-list-item-title> </v-list-item> </v-list> </v-menu> -- GitLab