Fix sort types

This commit is contained in:
Daniel Lautzenheiser 2022-09-28 22:10:31 -04:00
parent 0b64464611
commit 0ea675039a
2 changed files with 2 additions and 2 deletions

View File

@ -303,7 +303,7 @@ declare module 'netlify-cms-core' {
export interface CmsSortableFieldsDefault {
field: string;
direction: SortDirection;
direction?: SortDirection;
}
export interface CmsSortableFields {

View File

@ -572,7 +572,7 @@ export enum SortDirection {
export interface CmsSortableFieldsDefault {
field: string;
direction: SortDirection;
direction?: SortDirection;
}
export interface CmsSortableFields {