Skip to content

Commit 6d9ad4a

Browse files
authored
Merge pull request #9469 from gitbutlerapp/fix-textarea-focus-delay
Fix textarea focus delay in Textarea.svelte
2 parents 4cdc339 + 0aa9d48 commit 6d9ad4a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/ui/src/lib/Textarea.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
// set time out to ensure the element is rendered
7676
setTimeout(() => {
7777
textBoxEl?.focus();
78-
}, 0);
78+
}, 100);
7979
}
8080
});
8181

0 commit comments

Comments
 (0)