Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dist/app.css

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions dist/main.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Chimera UI Libraries - Build 0.32.3 (3/6/2025, 15:31:43)
* Chimera UI Libraries - Build 0.32.4 (3/10/2025, 13:31:48)
*
*/
/******/ (function(modules) { // webpackBootstrap
Expand Down Expand Up @@ -7065,7 +7065,7 @@ var Container = function Container(props) {
(0, _react.useEffect)(function () {
setFilters(authoredFilters.map(function (filterGroup) {
return _extends({}, filterGroup, {
opened: DESKTOP_SCREEN_SIZE ? filterGroup.openedOnLoad : false,
opened: DESKTOP_SCREEN_SIZE ? filterGroup.openedOnLoad : true,
items: filterGroup.items.map(function (filterItem) {
return _extends({}, filterItem, {
selected: false
Expand Down Expand Up @@ -7132,6 +7132,7 @@ var Container = function Container(props) {

return allFilters.map(function (filter) {
return _extends({}, filter, {
opened: DESKTOP_SCREEN_SIZE ? filter.openedOnLoad : true,
/* istanbul ignore next */
items: filter.items.filter(function (item) {
return tags.includes(item.id) || tags.includes(item.label) || tags.toString().includes('/' + item.id) // ***** FIX HERE *****
Expand Down
4 changes: 2 additions & 2 deletions dist/main.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/main.source.js

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion react/src/js/components/Consonant/Container/Container.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -695,7 +695,7 @@ const Container = (props) => {
useEffect(() => {
setFilters(authoredFilters.map(filterGroup => ({
...filterGroup,
opened: DESKTOP_SCREEN_SIZE ? filterGroup.openedOnLoad : false,
opened: DESKTOP_SCREEN_SIZE ? filterGroup.openedOnLoad : true,
items: filterGroup.items.map(filterItem => ({
...filterItem,
selected: false,
Expand Down Expand Up @@ -754,6 +754,7 @@ const Container = (props) => {

return allFilters.map(filter => ({
...filter,
opened: DESKTOP_SCREEN_SIZE ? filter.openedOnLoad : true,
/* istanbul ignore next */
items: filter.items.filter(item => tags.includes(item.id)
|| tags.includes(item.label)
Expand Down
Loading