Skip to content

Commit

Permalink
Fixed reason modal input autofocus
Browse files Browse the repository at this point in the history
  • Loading branch information
alima-webdev committed Jul 9, 2024
1 parent bb6c40d commit 9ada474
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ui/pane/columns/reason.ts
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ export async function reasonRegisterDOM() {
const reasonInput = reasonModalBody.querySelector(
"#input-reason",
) as HTMLInputElement;
reasonInput.setAttribute("autofocus", "true")
reasonInput.setAttribute("autofocus", "true");
const autocompleteContainer = reasonModalBody.querySelector(
"#input-reason-autocomplete",
) as HTMLDivElement;
Expand Down

0 comments on commit 9ada474

Please sign in to comment.