Skip to content

Commit

Permalink
wc: Add notes tab in interpreter browser rearrangement #TASK-7267 #TA…
Browse files Browse the repository at this point in the history
…SK-6445
  • Loading branch information
jmjuanes committed Dec 17, 2024
1 parent bf22751 commit ef17124
Showing 1 changed file with 22 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -400,6 +400,28 @@ class VariantInterpreterBrowserRearrangement extends LitElement {
},
showTitle: true,
items: [
{
id: "notes-variant1",
name: "Variant 1 Notes",
render: (variants, active, opencgaSession) => html`
<variant-notes
.opencgaSession="${opencgaSession}"
.variant="${variants?.[0]}"
.active="${active}">
</variant-notes>
`,
},
{
id: "notes-variant2",
name: "Variant 2 Notes",
render: (variants, active, opencgaSession) => html`
<variant-notes
.opencgaSession="${opencgaSession}"
.variant="${variants?.[1]}"
.active="${active}">
</variant-notes>
`,
},
{
id: "json-view-variant1",
name: "Variant 1 JSON Data",
Expand Down

0 comments on commit ef17124

Please sign in to comment.