diff --git a/package/client/resource/interface/input.ts b/package/client/resource/interface/input.ts index b681d9dc6..313688bef 100644 --- a/package/client/resource/interface/input.ts +++ b/package/client/resource/interface/input.ts @@ -158,6 +158,6 @@ type inputDialog = ( allowCancel?: boolean; } ) => Promise | undefined>; -export const inputDialog: inputDialog = async (heading, rows) => await exports.ox_lib.inputDialog(heading, rows); +export const inputDialog: inputDialog = async (heading, rows, options) => await exports.ox_lib.inputDialog(heading, rows, options); export const closeInputDialog = () => exports.ox_lib.closeInputDialog();