[CST-7217] Improve fix

This commit is contained in:
Giuseppe Digilio
2022-12-30 10:12:15 +01:00
parent 17b8bee824
commit 928431284f
2 changed files with 7 additions and 3 deletions

View File

@@ -2,9 +2,9 @@
[tabIndex]="-1"
[routerLink]="[searchLink]"
[queryParams]="addQueryParams" queryParamsHandling="merge">
<label class="mb-0">
<input type="checkbox" [checked]="false" class="my-1 align-self-stretch"/>
<span class="filter-value px-1 break-facet">
<label class="mb-0 d-flex w-100">
<input type="checkbox" [checked]="false" class="my-1 align-self-stretch filter-checkbox"/>
<span class="w-100 filter-value px-1 break-facet">
{{ 'search.filters.' + filterConfig.name + '.' + filterValue.value | translate: {default: filterValue.value} }}
</span>
</label>

View File

@@ -10,3 +10,7 @@ a {
.break-facet {
word-break: break-all;
}
.filter-checkbox {
height: fit-content;
}