Skip to content

Commit

Permalink
wc: Fix form to update a note for including note type field #TASK-726…
Browse files Browse the repository at this point in the history
…7 #TASK-6445
  • Loading branch information
jmjuanes committed Dec 11, 2024
1 parent 0f0cbf1 commit f7be5f7
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions src/webcomponents/note/note-update.js
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,31 @@ export default class NoteUpdate extends LitElement {
disabled: true,
}
},
{
title: "Note Type",
field: "type",
type: "select",
required: true,
defaultValue: "UNKNOWN",
allowedValues: [
"VARIANT",
"GENE",
"TRANSCRIPT",
"PROTEIN",
"JOB",
"FILE",
"SAMPLE",
"INDIVIDUAL",
"FAMILY",
"COHORT",
"DISEASE_PANEL",
"CLINICAL_ANALYSIS",
"WORKFLOW",
"ORGANIZATION",
"OTHER",
"UNKNOWN",
],
},
{
title: "Visibility",
field: "visibility",
Expand Down

0 comments on commit f7be5f7

Please sign in to comment.