Skip to content

Commit

Permalink
Merge branch 'main' into show-no-milestone
Browse files Browse the repository at this point in the history
  • Loading branch information
wx-03 committed Jan 18, 2025
2 parents 4e236fe + a6b0e1d commit 3563413
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/app/shared/filter-bar/filter-bar.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,24 @@
<mat-option [value]="50">50</mat-option>
</mat-select>
</mat-form-field>
<mat-form-field appearance="standard">
<mat-label>Assigned to</mat-label>
<mat-select
#assigneeSelectorRef
[value]="this.filter.assignees"
(selectionChange)="this.filtersService.updateFilters({ assignees: $event.value })"
[disabled]="this.assigneeService.hasNoAssignees"
multiple
>
<mat-select-trigger *ngIf="this.assigneeService.hasNoAssignees">
<span>No Assignees</span>
</mat-select-trigger>
<mat-option *ngFor="let assignee of this.assigneeService.assignees" [value]="assignee.login">
{{ assignee.login }}
</mat-option>
<mat-option [value]="'Unassigned'">Unassigned</mat-option>
</mat-select>
</mat-form-field>
<app-label-filter-bar></app-label-filter-bar>
</li>
<li class="menu" (click)="toggleMenu()">
Expand Down

0 comments on commit 3563413

Please sign in to comment.