Skip to content

Commit 2c11174

Browse files
committed
Adjust frontend tests
1 parent 1a64c90 commit 2c11174

File tree

4 files changed

+220
-162
lines changed

4 files changed

+220
-162
lines changed

frontend/src/app/shared/dialog/objective-dialog/objective-form.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
formControlName="alignment"
7676
class="alignment-input"
7777
placeholder="{{
78-
(this.filteredOptions | async)?.length == 0 ? 'Kein Alignment vorhanden' : 'Bezug wählen'
78+
(this.filteredOptions$ | async)?.length == 0 ? 'Kein Alignment vorhanden' : 'Bezug wählen'
7979
}}"
8080
[matAutocomplete]="auto"
8181
(input)="filter()"
@@ -84,7 +84,7 @@
8484
[value]="displayedValue"
8585
/>
8686
<mat-autocomplete requireSelection #auto="matAutocomplete" [displayWith]="displayWith">
87-
@for (group of filteredOptions | async; track group) {
87+
@for (group of filteredOptions$ | async; track group) {
8888
<mat-optgroup [label]="group.teamName" style="font-weight: bold">
8989
@for (alignmentObject of group.alignmentObjectDtos; track alignmentObject) {
9090
<mat-option [value]="alignmentObject">{{ alignmentObject.objectTitle }}</mat-option>

0 commit comments

Comments
 (0)