Merge pull request #5090 from allenve/master

fix: crud2 CRUD2TableSchema mode value
This commit is contained in:
yangwei9012 2022-08-08 17:27:36 +08:00 committed by GitHub
commit f6d04a14d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -183,7 +183,7 @@ export type CRUD2ListSchema = CRUD2CommonSchema & {
} & Omit<ListSchema, 'type'>;
export type CRUD2TableSchema = CRUD2CommonSchema & {
mode?: 'table';
mode?: 'table-v2';
} & Omit<TableSchema, 'type'>;
export type CRUD2Schema = CRUD2CardsSchema | CRUD2ListSchema | CRUD2TableSchema;