From 826682ff92e558f83aa9afa1503415d3b224068f Mon Sep 17 00:00:00 2001 From: Dragos-Paul Strat Date: Fri, 12 Jul 2024 11:08:38 +0300 Subject: [PATCH] fix: [475] remove backend min length for app description --- backend/src/modules/application/dto/create-application.dto.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/modules/application/dto/create-application.dto.ts b/backend/src/modules/application/dto/create-application.dto.ts index 359db292..1726aacb 100644 --- a/backend/src/modules/application/dto/create-application.dto.ts +++ b/backend/src/modules/application/dto/create-application.dto.ts @@ -31,7 +31,7 @@ export class CreateApplicationDto { shortDescription: string; @IsString() - @Length(200, 7000) + @Length(2, 7000) description: string; @IsString()