fix(ui): whole app scrolls while selecting staging area image

This commit is contained in:
psychedelicious
2025-07-09 17:58:17 +10:00
parent 059baf5b29
commit e5fceb0448

View File

@@ -26,7 +26,9 @@ export const StagingAreaToolbar = memo(() => {
useEffect(() => {
return ctx.$selectedItemId.listen((id) => {
if (id !== null) {
document.getElementById(getQueueItemElementId(id))?.scrollIntoView();
document
.getElementById(getQueueItemElementId(id))
?.scrollIntoView({ block: 'nearest', inline: 'nearest', behavior: 'auto' });
}
});
}, [ctx.$selectedItemId]);