We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c497ea0 commit 27d9a28Copy full SHA for 27d9a28
web/src/script/ui/dialog.js
@@ -86,6 +86,7 @@ export function AsyncPrompt(label, value) {
86
87
BaseDialog(label, area, () => resolve(area.value), () => resolve(null), () => {
88
area.focus();
89
+ area.setSelectionRange(area.value.length, area.value.length); // cursor end
90
area.style.height = area.scrollHeight + "px";
91
});
92
0 commit comments