Skip to content
Snippets Groups Projects

Uniq molstar plugin per page

Merged Remi PLANEL requested to merge uniq-molstar-plugin-per-page into dev
3 files
+ 14
4
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -60,7 +60,12 @@ const sanitizedStructures = computed(() => {
if (toValStructures?.hits?.length > 0) {
return toValStructures.hits.map(item => {
return { ...item, structuresUrls: [`/${item.System_name_ok}/${pdbNameToCif(item.pdb)}`, `/${item.System_name_ok}/${item.pdb}`] }
return {
...item, structuresUrls: [`/${item.System_name_ok}/${pdbNameToCif(item.pdb)}`, `/${item.System_name_ok}/${item.pdb}`]
.map(url => {
return toValue(useRefinedUrl(url).refinedUrl)
})
}
})
}
return []
Loading