Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
operramon committed Jan 16, 2025
1 parent c3d2524 commit 27d68e7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,11 @@
</pa-dropdown>
</div>
}
@if ((labelSets | async | keyvalue).length > 0) {
@if (((labelSets | async | keyvalue) || []).length > 0) {
<div>
<app-label-dropdown
[labelSets]="labelSets | async"
[selection]="selectedLabels | async"
[selection]="(selectedLabels | async) || []"
(selectionChange)="updateSelectedLabels($event)"
[fullWidth]="true"
[multiple]="true"
Expand Down

0 comments on commit 27d68e7

Please sign in to comment.