From 413f719a38d8dc52a7543b13f02cff2be62caeac Mon Sep 17 00:00:00 2001 From: Yoann Bourdex Date: Mon, 27 Jun 2022 10:28:21 +0200 Subject: [PATCH] fix: add isSortable in SmartFieldOptions Hey, If I trust your [docs](https://docs.forestadmin.com/documentation/reference-guide/smart-fields/smart-field-examples/sort-by-smart-field#smart-field-definition) It missing isSortable property in SmartFieldOptions --- types/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/index.d.ts b/types/index.d.ts index e13094b42..842232389 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -276,6 +276,7 @@ export interface SmartFieldOptions { isFilterable?: boolean; isReadOnly?: boolean; isRequired?: boolean; + isSortable?: boolean; reference?: string; enums?: FieldEnumsType; defaultValue?: any;