mirror of
https://github.com/stashapp/stash.git
synced 2025-12-18 04:44:37 +03:00
fix show all details default behavior (#4047)
This commit is contained in:
@@ -82,7 +82,7 @@ const StudioPage: React.FC<IProps> = ({ studio, tabKey }) => {
|
||||
const uiConfig = configuration?.ui as IUIConfig | undefined;
|
||||
const abbreviateCounter = uiConfig?.abbreviateCounters ?? false;
|
||||
const enableBackgroundImage = uiConfig?.enableStudioBackgroundImage ?? false;
|
||||
const showAllDetails = uiConfig?.showAllDetails ?? false;
|
||||
const showAllDetails = uiConfig?.showAllDetails ?? true;
|
||||
const compactExpandedDetails = uiConfig?.compactExpandedDetails ?? false;
|
||||
|
||||
const [collapsed, setCollapsed] = useState<boolean>(!showAllDetails);
|
||||
|
||||
Reference in New Issue
Block a user