Skip to content

Commit

Permalink
style: fix ci issue wrt indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
double-beep authored Jun 16, 2024
1 parent f5b6657 commit daa606a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/modals/comments/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -388,9 +388,9 @@ function createCategoryDiv(category: Partial<CachedCategory>): HTMLDivElement {
container.append(div);
$(div).fadeIn({
complete: () => {
// click edit & focus on name input
div.querySelector<HTMLButtonElement>('[id^="advanced-flagging-edit-flagtype-"]')?.click();
div.querySelector<HTMLInputElement>('[id^="advanced-flagging-flag-name-"]')?.focus();
// click edit & focus on name input
div.querySelector<HTMLButtonElement>('[id^="advanced-flagging-edit-flagtype-"]')?.click();
div.querySelector<HTMLInputElement>('[id^="advanced-flagging-flag-name-"]')?.focus();
}
});
});
Expand Down

0 comments on commit daa606a

Please sign in to comment.