From baaa2faf6f263ac6d1b1c69ddd67ef73b7a509c0 Mon Sep 17 00:00:00 2001 From: Gabriele Date: Mon, 14 Feb 2022 18:40:37 +0100 Subject: [PATCH] fix: add isSortable to SmartFieldOptions type --- types/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/index.d.ts b/types/index.d.ts index 9a79a2319..787e2c0e8 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -256,6 +256,7 @@ export interface SmartFieldOptions { description?: string; type: FieldType; isFilterable?: boolean; + isSortable?: boolean; isReadOnly?: boolean; isRequired?: boolean; reference?: string;