eslint: Avoid @typescript-eslint/no-deprecated for jQuery ‘on’.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg
2024-09-24 20:01:36 -07:00
committed by Anders Kaseorg
parent 2dce73ecfa
commit b7e02436b8
4 changed files with 9 additions and 6 deletions

View File

@@ -599,7 +599,10 @@ function update_profile_fields_checkboxes(): void {
);
}
function toggle_display_in_profile_summary_profile_field(this: HTMLInputElement): void {
function toggle_display_in_profile_summary_profile_field(
this: HTMLInputElement,
_event: JQuery.Event,
): void {
const field_id = Number.parseInt($(this).attr("data-profile-field-id")!, 10);
const data = {
@@ -615,7 +618,7 @@ function toggle_display_in_profile_summary_profile_field(this: HTMLInputElement)
);
}
function toggle_required(this: HTMLInputElement): void {
function toggle_required(this: HTMLInputElement, _event: JQuery.Event): void {
const field_id = Number.parseInt($(this).attr("data-profile-field-id")!, 10);
const data = {