Skip to content
Snippets Groups Projects
Commit 6ec44ad1 authored by Remi  PLANEL's avatar Remi PLANEL
Browse files

remove fake link and add effector in filters

parent 1a4c694e
No related branches found
No related tags found
No related merge requests found
Pipeline #118950 passed with stages
in 12 minutes and 44 seconds
......@@ -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"])
......
......@@ -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 },
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment