File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed
Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,9 @@ function isCategoryNoneSelected(category: string): boolean {
4141 :data-facet-category =" category"
4242 :aria-label =" `${$t('compare.facets.all')} ${getCategoryLabel(category)}`"
4343 :aria-disabled =" isCategoryAllSelected(category)"
44- :class =" { 'opacity-40 cursor-not-allowed border-transparent': isCategoryAllSelected(category) }"
44+ :class =" {
45+ 'opacity-40 cursor-not-allowed border-transparent': isCategoryAllSelected(category),
46+ }"
4547 @click =" !isCategoryAllSelected(category) && selectCategory(category)"
4648 >
4749 {{ $t('compare.facets.all') }}
@@ -55,7 +57,9 @@ function isCategoryNoneSelected(category: string): boolean {
5557 :data-facet-category =" category"
5658 :aria-label =" `${$t('compare.facets.none')} ${getCategoryLabel(category)}`"
5759 :aria-disabled =" isCategoryNoneSelected(category)"
58- :class =" { 'opacity-40 cursor-not-allowed border-transparent': isCategoryNoneSelected(category) }"
60+ :class =" {
61+ 'opacity-40 cursor-not-allowed border-transparent': isCategoryNoneSelected(category),
62+ }"
5963 @click =" !isCategoryNoneSelected(category) && deselectCategory(category)"
6064 >
6165 {{ $t('compare.facets.none') }}
@@ -102,4 +106,4 @@ function isCategoryNoneSelected(category: string): boolean {
102106 </div >
103107 </div >
104108 </div >
105- </template >
109+ </template >
You can’t perform that action at this time.
0 commit comments