Skip to content

Commit 188276e

Browse files
committed
Updating docs
1 parent 26f8db8 commit 188276e

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

book/src/SUMMARY.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
- [Cohort editor](help/cohort-editor.md)
1616
- [Table editor](help/table-editor.md)
1717
- [Repo Q/C](help/repo.md)
18-
- [Variants](help/variants.md)
1918
- [Entering variant data](help/variant-data.md)
2019
- [Variants](variants/overview.md)
2120
- [Structural variants](variants/structural.md)

src/app/pttemplate/pttemplate.component.html

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,10 +139,13 @@
139139
<td class="relative narrow-column">
140140
@if (row.alleles.length === 0) {
141141
<button
142-
cdkOverlayOrigin
142+
cdkOverlayOrigin #originList="cdkOverlayOrigin"
143143
#originEmpty="cdkOverlayOrigin"
144144
class="allele-btn allele-btn-add"
145145
(click)="openAddAlleleRowId = row.id">+</button>
146+
<app-popover [trigger]="originList" [isOpen]="openAddAlleleRowId === row.id">
147+
<ng-container *ngTemplateOutlet="alleleMenuContent"></ng-container>
148+
</app-popover>
146149
}
147150
@for (allele of row.alleles; track allele.key) {
148151
<div class="allele-row flex items-center gap-x-3">

0 commit comments

Comments
 (0)