mirror of
https://github.com/stashapp/stash.git
synced 2025-12-07 17:02:38 +01:00
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:
parent
91ec37baf2
commit
b9fe590aa1
1 changed files with 1 additions and 1 deletions
|
|
@ -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>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue