mirror of
https://github.com/stashapp/stash.git
synced 2026-05-09 05:05:29 +02:00
More isVisible deps
This commit is contained in:
parent
517e5d9a36
commit
bf2e2ccede
2 changed files with 2 additions and 2 deletions
|
|
@ -257,7 +257,7 @@ export const SceneEditPanel: React.FC<IProps> = ({
|
|||
Mousetrap.unbind("d d");
|
||||
};
|
||||
}
|
||||
}, []);
|
||||
}, [isVisible]);
|
||||
|
||||
useEffect(() => {
|
||||
const toFilter = Scrapers?.data?.listScrapers ?? [];
|
||||
|
|
|
|||
|
|
@ -36,7 +36,7 @@ export const SceneMarkersPanel: React.FC<ISceneMarkersPanelProps> = ({
|
|||
return () => {
|
||||
Mousetrap.unbind("n");
|
||||
};
|
||||
}, []);
|
||||
}, [isVisible]);
|
||||
|
||||
if (loading) return null;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue