File tree Expand file tree Collapse file tree
assets/js/ff-web-components
views/twig/extensions/themes/default/layout Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2525 run : echo "::set-output name=dir::$(composer config cache-files-dir)"
2626
2727 - name : Load Composer cache
28- uses : actions/cache@v2
28+ uses : actions/cache@v4
2929 with :
3030 path : ${{ steps.composer-cache.outputs.dir }}
3131 key : ${{ runner.os }}-${{ matrix.php }}-${{ matrix.deps }}-composer
Original file line number Diff line number Diff line change 55
66### Change
77- Upgrade Web Components default styles
8- - Upgrade Web Components version to v5.1.0
8+ - Upgrade Web Components version to v5.1.1
99
1010### Fix
1111- Implement redirection to search result page for searchTerm and brand suggests
12+ - Fix filter cloud issue on category pages
1213
1314## [ v6.0.0] - 2025.02.05
1415### BREAKING
Original file line number Diff line number Diff line change 7272 {% endif % }
7373
7474 {% if oViewConf .getSearchImmediate ()| escape (" js" ) and oView .getClassKey () == " search_result" % }
75- const searchParams = factfinder .utils .env .searchParamsFromUrl ({ categoryFieldName: ` {{oViewConf.getFFStringConfigParam('ffCategoryPathFieldName')}}` });
75+ let searchParams = factfinder .utils .env .searchParamsFromUrl ({ categoryFieldName: ` {{oViewConf.getFFStringConfigParam('ffCategoryPathFieldName')}}` });
7676 initialSearch (searchParams, { requestOptions: { origin: ` initialSearch` } });
7777 {% endif % }
7878
8989 }));
9090
9191 const initOptions = factfinder .config .get ();
92- initialSearch ({
93- filters: initOptions .appConfig .categoryPage ,
94- });
92+ searchParams = factfinder .utils .env .searchParamsFromUrl (
93+ { categoryFieldName: ` {{oViewConf.getFFStringConfigParam('ffCategoryPathFieldName')}}` }
94+ );
95+
96+ searchParams .filters = searchParams .filters ?? [];
97+ searchParams .filters .push (initOptions .appConfig .categoryPage [0 ]);
98+ initialSearch (searchParams);
9599 {% endif % }
96100
97101 });
You can’t perform that action at this time.
0 commit comments