From 49a5c722418d1387a860bf0119317001c31f042b Mon Sep 17 00:00:00 2001 From: Remi PLANEL <rplanel@pasteur.fr> Date: Mon, 5 Feb 2024 15:02:45 +0100 Subject: [PATCH] only display format --- components/content/MolstarPdbePlugin.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/content/MolstarPdbePlugin.vue b/components/content/MolstarPdbePlugin.vue index 8b80afbb..82f8db51 100644 --- a/components/content/MolstarPdbePlugin.vue +++ b/components/content/MolstarPdbePlugin.vue @@ -172,7 +172,7 @@ const moleculeFormat: Ref<string> = ref("pdb") </template> <v-list> <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-title>{{ item.split('.').slice(-1)[0] }}</v-list-item-title> </v-list-item> </v-list> </v-menu> -- GitLab