diff --git a/components/content/StructureDb.vue b/components/content/StructureDb.vue index 2184258ee617431b0dc4544cfa4b7765e172ab47..19e480fe753dca0aa7f3dd5ffbaf5edda09a3cf2 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}`