You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Filter groups are missing their padding when JavaScript doesn't load:
And the collapseByDefault option for filter groups works with JS enabled/loaded. However, is JavaScript doesn't load, then it still collapses but can never be expanded so those checkboxes are unusable:
There are a few ways we could solve the second issue:
only honour collapseByDefault client-side e.g. after componentDidMount or useEffect, but this will cause a layout shift
use anchors from the group to the options, and use :target in CSS to expand the group
use a details element
The text was updated successfully, but these errors were encountered:
Filter groups are missing their padding when JavaScript doesn't load:
And the
collapseByDefault
option for filter groups works with JS enabled/loaded. However, is JavaScript doesn't load, then it still collapses but can never be expanded so those checkboxes are unusable:There are a few ways we could solve the second issue:
collapseByDefault
client-side e.g. aftercomponentDidMount
oruseEffect
, but this will cause a layout shift:target
in CSS to expand the groupdetails
elementThe text was updated successfully, but these errors were encountered: