From 3e0e2036dced510ec587a13819ba561660156598 Mon Sep 17 00:00:00 2001 From: Remi PLANEL <rplanel@pasteur.fr> Date: Tue, 9 Jan 2024 10:37:21 +0100 Subject: [PATCH] add icons for systemDB --- components/content/SystemDb.vue | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/components/content/SystemDb.vue b/components/content/SystemDb.vue index 4b6250ff..c754d132 100644 --- a/components/content/SystemDb.vue +++ b/components/content/SystemDb.vue @@ -23,22 +23,22 @@ const autocompleteMeiliFacetsProps = ref<AutocompleteMeiliFacetProps>({ db: toValue(dbName), facets: [ { title: "Defense System", type: "subheader" }, - { title: 'System', value: "title", type: "facet", icon: "" }, + { title: 'System', value: "title", type: "facet", icon: "mdi-virus-outline" }, { type: "divider" }, { title: "Mechanism", type: "subheader" }, - { title: 'Sensor', value: "Sensor", type: "facet", icon: "" }, - { title: 'Effector', value: "Effector", type: "facet", icon: "" }, - { title: 'Activator', value: "Activator", type: "facet", icon: "" }, + { title: 'Sensor', value: "Sensor", type: "facet", icon: "mdi-cog" }, + { title: 'Effector', value: "Effector", type: "facet", icon: "mdi-cog" }, + { title: 'Activator', value: "Activator", type: "facet", icon: "mdi-cog" }, { type: "divider" }, { title: "PFAM", type: "subheader" }, - { title: 'Acession', value: "PFAM.AC", type: "facet", icon: "" }, - { title: 'Description', value: "PFAM.DE", type: "facet", icon: "" }, + { title: 'Acession', value: "PFAM.AC", type: "facet", icon: "mdi-key" }, + { title: 'Description', value: "PFAM.DE", type: "facet", icon: "md:description" }, { type: "divider" }, - { title: 'Contributor', value: "contributors", type: "facet", icon: "" }, + { title: 'Contributor', value: "contributors", type: "facet", icon: "md:person" }, ], facetDistribution: undefined }) -- GitLab