Fix relation field type (#4992)

This commit is contained in:
martmull
2024-04-17 14:56:27 +02:00
committed by GitHub
parent cf50391b00
commit 64cc6ecc3b
4 changed files with 10 additions and 5 deletions

View File

@ -12,7 +12,7 @@ export type FormatRelationMetadataInputParams = {
field: Pick<Field, 'label' | 'icon' | 'description' | 'type'>;
objectMetadataId: string;
connect: {
field: Pick<Field, 'label' | 'icon' | 'type'>;
field: Pick<Field, 'label' | 'icon'>;
objectMetadataId: string;
};
};