sidebar move selected / excluded filter options into collapse header element

the goal is to keep selected options visble when scrolling, not just the
section header
This commit is contained in:
spaceyuck 2025-10-30 22:00:48 +01:00
parent 91ec37baf2
commit b9fe590aa1

View file

@ -38,8 +38,8 @@ export const CollapseButton: React.FC<React.PropsWithChildren<IProps>> = (
<Icon icon={open ? faChevronDown : faChevronRight} fixedWidth /> <Icon icon={open ? faChevronDown : faChevronRight} fixedWidth />
<span>{props.text}</span> <span>{props.text}</span>
</Button> </Button>
</div>
{props.outsideCollapse} {props.outsideCollapse}
</div>
<Collapse in={open} {...props.collapseProps}> <Collapse in={open} {...props.collapseProps}>
<div>{props.children}</div> <div>{props.children}</div>
</Collapse> </Collapse>