From 551168844ea455a6f354487b9c031e4f7ebbb69f Mon Sep 17 00:00:00 2001
From: Remi  PLANEL <rplanel@pasteur.fr>
Date: Wed, 20 Dec 2023 13:46:58 +0100
Subject: [PATCH] add pfam to filter for list systems

---
 components/content/SystemDb.vue | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components/content/SystemDb.vue b/components/content/SystemDb.vue
index 1008b08f..72d1642f 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", "Effector", "Activator"])
+const facets: Ref<string[]> = ref(["title", "Sensor", "Effector", "Activator", "PFAM.AC"])
 const headers: Ref<Object[]> = ref([
     { title: "System", key: "title", removable: false },
     { title: "Article", key: "doi", removable: false },
-- 
GitLab