From 180bf560e1c0a020a44f75ed712bdaafd2fe6652 Mon Sep 17 00:00:00 2001 From: Josemi Date: Wed, 11 Dec 2024 18:51:22 +0100 Subject: [PATCH] wc: Add note type as a filter in note browser #TASK-7267 #TASK-6445 --- src/webcomponents/note/note-browser.js | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/src/webcomponents/note/note-browser.js b/src/webcomponents/note/note-browser.js index 4bd927f2d..0360ef8a4 100644 --- a/src/webcomponents/note/note-browser.js +++ b/src/webcomponents/note/note-browser.js @@ -204,6 +204,30 @@ export default class NoteBrowser extends LitElement { `; }, }, + { + id: "noteType", + name: "Note Type", + allowedValues: [ + "VARIANT", + "GENE", + "TRANSCRIPT", + "PROTEIN", + "JOB", + "FILE", + "SAMPLE", + "INDIVIDUAL", + "FAMILY", + "COHORT", + "DISEASE_PANEL", + "CLINICAL_ANALYSIS", + "WORKFLOW", + "ORGANIZATION", + "OTHER", + "UNKNOWN", + ], + multiple: true, + description: "", + }, { id: "visibility", name: "Visibility",