formating changes

This commit is contained in:
Aayush Rohila
2023-02-03 11:51:36 +05:30
parent 4ae089a635
commit a084b48213
2 changed files with 8 additions and 4 deletions

View File

@@ -1,8 +1,13 @@
<fieldset> <fieldset>
<legend class="adf-search-check-list-title">{{ name | translate }}</legend> <legend class="adf-search-check-list-title">{{ name | translate }}</legend>
<mat-checkbox *ngFor="let option of options" [checked]="option.checked" <mat-checkbox
(keydown.enter)="option.checked = !option.checked" [attr.data-automation-id]="'checkbox-' + (option.name)" *ngFor="let option of options"
[attr.aria-label]="option.name | translate" (change)="changeHandler($event, option)" class="adf-facet-filter"> [checked]="option.checked"
(keydown.enter)="option.checked = !option.checked"
[attr.data-automation-id]="'checkbox-' + (option.name)"
[attr.aria-label]="option.name | translate"
(change)="changeHandler($event, option)"
class="adf-facet-filter">
<div matTooltip="{{ option.name | translate }}" matTooltipPosition="right" class="facet-name"> <div matTooltip="{{ option.name | translate }}" matTooltipPosition="right" class="facet-name">
{{ option.name | translate }} {{ option.name | translate }}
</div> </div>

View File

@@ -31,7 +31,6 @@
padding-bottom: 5px; padding-bottom: 5px;
color: var(--theme-text-bold-color); color: var(--theme-text-bold-color);
} }
} }
fieldset { fieldset {