mirror of
https://github.com/stashapp/stash.git
synced 2025-12-15 21:03:22 +01:00
Persist studio/gallery/marker list filters (#802)
This commit is contained in:
parent
9095ba21dc
commit
5ba11e0e93
3 changed files with 3 additions and 0 deletions
|
|
@ -11,6 +11,7 @@ export const GalleryList: React.FC = () => {
|
|||
const listData = useGalleriesList({
|
||||
zoomable: true,
|
||||
renderContent,
|
||||
persistState: true,
|
||||
});
|
||||
|
||||
function renderContent(
|
||||
|
|
|
|||
|
|
@ -40,6 +40,7 @@ export const SceneMarkerList: React.FC<ISceneMarkerList> = ({ filterHook }) => {
|
|||
renderContent,
|
||||
filterHook,
|
||||
addKeybinds,
|
||||
persistState: true,
|
||||
});
|
||||
|
||||
async function playRandom(
|
||||
|
|
|
|||
|
|
@ -17,6 +17,7 @@ export const StudioList: React.FC<IStudioList> = ({
|
|||
const listData = useStudiosList({
|
||||
renderContent,
|
||||
filterHook,
|
||||
persistState: !fromParent,
|
||||
});
|
||||
|
||||
function renderContent(
|
||||
|
|
|
|||
Loading…
Reference in a new issue