Skip to content

Commit

Permalink
wc: Fix form to create a new note for including note type field #TASK…
Browse files Browse the repository at this point in the history
…-7267 #TASK-6445
  • Loading branch information
jmjuanes committed Dec 11, 2024
1 parent 7bfc428 commit 0f0cbf1
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions src/webcomponents/note/note-create.js
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,31 @@ export default class NoteCreate extends LitElement {
type: "input-text",
required: 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 0f0cbf1

Please sign in to comment.