diff --git a/packages/types/src/ui/stores/grid/datasource.ts b/packages/types/src/ui/stores/grid/datasource.ts index 32ac7d5fe1..c8a6a6fc83 100644 --- a/packages/types/src/ui/stores/grid/datasource.ts +++ b/packages/types/src/ui/stores/grid/datasource.ts @@ -3,6 +3,7 @@ import { UITable, UIView } from "@budibase/types" export type UIDatasource = UITable | UIView export interface UIFieldMutation { - visible: boolean + visible?: boolean readonly?: boolean + width?: number }