From a707275562bcb7cd82446759e701cc0de978449e Mon Sep 17 00:00:00 2001 From: Lourens Schep Date: Mon, 28 Oct 2024 16:49:59 +0000 Subject: [PATCH] Update `field` to FormField as well --- packages/dataviews/src/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/dataviews/src/types.ts b/packages/dataviews/src/types.ts index 85f7d6d4e66e99..2e5465761ba13d 100644 --- a/packages/dataviews/src/types.ts +++ b/packages/dataviews/src/types.ts @@ -541,7 +541,7 @@ export type FormField = | { id: string; layout?: 'regular' | 'panel' | 'inline'; - field?: string; + field?: FormField; fields?: FormField[]; };