fix scroll & jumping issues with task dropdown, fixes ST-395

This commit is contained in:
Gregor Vostrak
2024-09-06 17:29:03 +02:00
committed by Constantin Graf
parent 19cc05140a
commit b391f47d1b
3 changed files with 35 additions and 3 deletions

View File

@@ -33,7 +33,7 @@ watch(open, (isOpen) => {
if (isOpen) {
nextTick(() => {
initializeHighlightedItem();
searchInput.value?.focus();
searchInput.value?.focus({ preventScroll: true });
});
}
});