From 2b9f49febd276197081cbeb3b71d97e3ea014e2f Mon Sep 17 00:00:00 2001 From: Fraser Watt <28698343+FrazzIe@users.noreply.github.com> Date: Thu, 18 Jul 2024 09:28:42 +0100 Subject: [PATCH] fix(package): input dialog options param (#622) --- package/client/resource/interface/input.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();