fix: backward compatibility content type fields type

This commit is contained in:
hexastack
2025-04-16 11:15:01 +01:00
parent beddb7f22a
commit 2e04f3cef4

View File

@@ -40,7 +40,7 @@ export class ContentField {
message:
"type must be one of the following values: 'text', 'url', 'textarea', 'checkbox', 'file', 'html'",
})
type: FieldType;
type: FieldType | string;
}
export class ContentTypeCreateDto {