Skip to content

Commit

Permalink
Fix double click needed to remove filter
Browse files Browse the repository at this point in the history
  • Loading branch information
bastianjoel committed Oct 5, 2023
1 parent d2a51bf commit 49a1c04
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@
<!-- Current filters -->
<div class="current-filters h-scroller" *ngIf="filterService">
<div *ngFor="let filter of filterService.filterStack">
<button mat-stroked-button (click)="removeFilterFromStack(filter)">
<button
mat-stroked-button
(mouseup)="removeFilterFromStack(filter)"
(click)="removeFilterFromStack(filter)"
>
<os-icon-container icon="close" class="active-filter">
<span class="active-filter">
{{ filter.option.label | translate }}
Expand Down

0 comments on commit 49a1c04

Please sign in to comment.