Commits
noltrifork authored 41008066025
29 29 | [(appVersionedSection)]="value.multiplePregnancySection"></app-input> |
30 30 | <a routerLink="/undersøgelser-og-målinger" [queryParams]="{tab: 1, highlight: 'trimester-fetus-count'}">Rediger ved ultralydsscanninger under undersøgelser</a> |
31 31 | </div> |
32 32 | </div> |
33 33 | </app-card> |
34 34 | |
35 35 | <app-card header="Vægt før graviditet" appHighlightOnNavigation="vægt-før-graviditet"> |
36 36 | <div class="third-split"> |
37 37 | <app-input name="bmi-weight" label="Før-graviditetsvægt" type="number" unit="kg" |
38 38 | [(ngModel)]="value.bmiWeight" |
39 - | [(appVersionedSection)]="value.bodyMeasuresSection"></app-input> |
39 + | [(appVersionedSection)]="value.bodyMeasuresSection" |
40 + | (ngModelChange)="updateInnerBmi()"></app-input> |
40 41 | <app-input name="bmi-height" label="Højde" type="number" unit="cm" |
41 42 | [(ngModel)]="value.bmiHeight" |
43 + | [(appVersionedSection)]="value.bodyMeasuresSection" |
44 + | (ngModelChange)="updateInnerBmi()"></app-input> |
45 + | <app-input name="bmi-total" label="BMI" type="number" disabled |
46 + | [ngModel]="bmi" |
42 47 | [(appVersionedSection)]="value.bodyMeasuresSection"></app-input> |
43 - | <mat-form-field appearance="outline" class="disabled"> |
44 - | <mat-label>BMI</mat-label> |
45 - | <input matInput name="bmi-total" [value]="bmi" disabled> |
46 - | </mat-form-field> |
47 48 | </div> |
48 49 | </app-card> |
49 50 | |
50 51 | <app-card header="Fertilitetsbehandling" appHighlightOnNavigation="fertilitetsbehandling"> |
51 52 | <div class="right-biased-split"> |
52 53 | <app-dropdown label="Type" name="fertility-treatment-type" |
53 54 | [(ngModel)]="value.fertilityTreatmentType" |
54 55 | [(appVersionedSection)]="value.assistedFertilizationSection"> |
55 56 | <mat-option value="spontaneous">Spontan</mat-option> |
56 57 | <mat-option value="ovulation_induction_ivf">Ovulations induktion uden IVF</mat-option> |