feat(shortcut): focus submit button after setting inputs

This commit is contained in:
Defelo 2025-07-22 16:37:27 +02:00
commit 960b703e17
No known key found for this signature in database
GPG key ID: 2A05272471204DD3

View file

@ -102,6 +102,8 @@ const setupActionsPage = async () => {
[...inputs]
.filter(([name]) => name !== "branch")
.forEach(([name, value]) => setInput(name, value));
document.querySelector("details .workflow-dispatch button[type=submit]").focus();
};
const setupPrPage = async () => {