Skip to content

Commit

Permalink
wc: Add note type as a filter in note browser #TASK-7267 #TASK-6445
Browse files Browse the repository at this point in the history
  • Loading branch information
jmjuanes committed Dec 11, 2024
1 parent 8bc013d commit 180bf56
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions src/webcomponents/note/note-browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 180bf56

Please sign in to comment.