From a5f1aa25e4de68399f2648a7aa8861361483a976 Mon Sep 17 00:00:00 2001 From: hexastack Date: Wed, 16 Apr 2025 11:26:45 +0100 Subject: [PATCH] fix: address feedback --- api/src/cms/dto/contentType.dto.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/cms/dto/contentType.dto.ts b/api/src/cms/dto/contentType.dto.ts index 3ecd821b..e099f2c6 100644 --- a/api/src/cms/dto/contentType.dto.ts +++ b/api/src/cms/dto/contentType.dto.ts @@ -40,7 +40,7 @@ export class ContentField { message: "type must be one of the following values: 'text', 'url', 'textarea', 'checkbox', 'file', 'html'", }) - type: FieldType | string; + type: FieldType | `${FieldType}`; } export class ContentTypeCreateDto {