mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-04-23 03:00:31 -04:00
fix(ui): whole app scrolls while selecting staging area image
This commit is contained in:
@@ -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]);
|
||||
|
||||
Reference in New Issue
Block a user