Skip to content

Commit

Permalink
Use pointer for checkboxes aswell
Browse files Browse the repository at this point in the history
  • Loading branch information
florian-glombik committed Aug 14, 2024
1 parent aafaac0 commit 336c158
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ <h4 class="modal-title">
@for (typeFilter of typeFilter!.options; track typeFilter) {
<div class="form-check form-check-inline no-left-margin-padding">
<label class="pointer">
<input type="checkbox" [(ngModel)]="typeFilter.checked" [name]="typeFilter.value" />
<input type="checkbox" [(ngModel)]="typeFilter.checked" [name]="typeFilter.value" class="pointer" />
<fa-icon [icon]="typeFilter.icon" class="ms-2" />
<span [jhiTranslate]="typeFilter.name" class="ms-1"></span>
</label>
Expand All @@ -82,7 +82,7 @@ <h4 class="modal-title">
@for (difficultyFilter of difficultyFilter.options; track difficultyFilter) {
<div class="form-check form-check-inline no-left-margin-padding">
<label class="pointer">
<input type="checkbox" [(ngModel)]="difficultyFilter.checked" [name]="difficultyFilter.value" />
<input type="checkbox" [(ngModel)]="difficultyFilter.checked" [name]="difficultyFilter.value" class="pointer" />
<span [jhiTranslate]="difficultyFilter.name" class="ms-1"></span>
</label>
</div>
Expand Down

0 comments on commit 336c158

Please sign in to comment.