diff --git a/components/content/RefseqDb.vue b/components/content/RefseqDb.vue index 273f4a4dd11682ab892e664fdc44278b8405506f..ee4e713bbcd0f8a247d5283afe1a40fa7230f3a9 100644 --- a/components/content/RefseqDb.vue +++ b/components/content/RefseqDb.vue @@ -186,7 +186,10 @@ function namesToCollapsibleChips(names: string[]) { function namesToAccessionChips(names: string[]) { return namesToCollapsibleChips(names).map(it => { - return { ...it, href: new URL(it.title, "http://toto.pasteur.cloud").toString() } + return { + ...it, + // href: new URL(it.title, "http://toto.pasteur.cloud").toString() + } }) } const systemPanel: Ref<number> = ref(["table"]) diff --git a/components/content/SystemDb.vue b/components/content/SystemDb.vue index 571df61219336f7edf4aeaf72d54caebd1542d2b..1008b08fd328e29e2507ac29e5410c1bca00029a 100644 --- a/components/content/SystemDb.vue +++ b/components/content/SystemDb.vue @@ -3,7 +3,7 @@ import type { SortItem } from "@/components/ServerDbTable.vue" import { ServerDbTable } from "#components" const sortBy: Ref<SortItem[]> = ref([{ key: 'title', order: "asc" }]) const itemValue = ref("title"); -const facets: Ref<string[]> = ref(["title", "Sensor", "Activator"]) +const facets: Ref<string[]> = ref(["title", "Sensor", "Effector", "Activator"]) const headers: Ref<Object[]> = ref([ { title: "System", key: "title", removable: false }, { title: "Article", key: "doi", removable: false },