From 52d4672bc90242b1d7781d55344c21b3ec0e61c8 Mon Sep 17 00:00:00 2001
From: Remi  PLANEL <rplanel@pasteur.fr>
Date: Mon, 24 Jun 2024 16:11:41 +0200
Subject: [PATCH] Fix some url issue

---
 components/content/StructureDb.vue | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/components/content/StructureDb.vue b/components/content/StructureDb.vue
index 2184258e..19e480fe 100644
--- a/components/content/StructureDb.vue
+++ b/components/content/StructureDb.vue
@@ -161,16 +161,17 @@ function pdbNameToCif(pdbPath: string) {
 
 
 function buildStructureUrl(item: StructureItem) {
-    return [`/${item.system.toLocaleLowerCase()}/${pdbNameToCif(item.pdb)}`, `/${item.system}/${item.pdb}`]
+    const lowercaseSystem = item.system.toLocaleLowerCase()
+    return [
+        `/${lowercaseSystem}/${pdbNameToCif(item.pdb)}`,
+        `/${lowercaseSystem}/${item.pdb}`].map(url => {
+            return toValue(useRefinedUrl(url).refinedUrl)
+        })
 }
 
 function displayStructure(item: StructureItem) {
     const structureUrls = buildStructureUrl(item)
-    console.log(structureUrls)
-    structureBasket.set(structureUrls.map(url => {
-        const refinedUrl = useRefinedUrl(url).refinedUrl
-        return toValue(refinedUrl)
-    }))
+    structureBasket.set(structureUrls)
     structureTitle.value = `${item?.system} - ${item.subsystem}`
 
 
-- 
GitLab