Skip to content

Commit

Permalink
Adjust frontend tests
Browse files Browse the repository at this point in the history
  • Loading branch information
lkleisa committed May 27, 2024
1 parent 1a64c90 commit 2c11174
Show file tree
Hide file tree
Showing 4 changed files with 220 additions and 162 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
formControlName="alignment"
class="alignment-input"
placeholder="{{
(this.filteredOptions | async)?.length == 0 ? 'Kein Alignment vorhanden' : 'Bezug wählen'
(this.filteredOptions$ | async)?.length == 0 ? 'Kein Alignment vorhanden' : 'Bezug wählen'
}}"
[matAutocomplete]="auto"
(input)="filter()"
Expand All @@ -84,7 +84,7 @@
[value]="displayedValue"
/>
<mat-autocomplete requireSelection #auto="matAutocomplete" [displayWith]="displayWith">
@for (group of filteredOptions | async; track group) {
@for (group of filteredOptions$ | async; track group) {
<mat-optgroup [label]="group.teamName" style="font-weight: bold">
@for (alignmentObject of group.alignmentObjectDtos; track alignmentObject) {
<mat-option [value]="alignmentObject">{{ alignmentObject.objectTitle }}</mat-option>
Expand Down
Loading

0 comments on commit 2c11174

Please sign in to comment.