mirror of
https://github.com/zulip/zulip.git
synced 2025-11-15 19:31:58 +00:00
dialog_widget: Fix 'onclick' event type.
This commit is contained in:
@@ -61,7 +61,7 @@ function current_dialog_widget_selector(): string {
|
|||||||
export type DialogWidgetConfig = {
|
export type DialogWidgetConfig = {
|
||||||
html_heading: string;
|
html_heading: string;
|
||||||
html_body: string;
|
html_body: string;
|
||||||
on_click: (e: unknown) => void;
|
on_click: (e: JQuery.ClickEvent) => void;
|
||||||
html_submit_button?: string;
|
html_submit_button?: string;
|
||||||
html_exit_button?: string;
|
html_exit_button?: string;
|
||||||
close_on_submit?: boolean;
|
close_on_submit?: boolean;
|
||||||
|
|||||||
Reference in New Issue
Block a user