N-FIN-5: fix entity name min. length

This commit is contained in:
Markus Thielker 2024-03-10 12:38:57 +01:00
parent 2793ca9204
commit 6e449ac603
No known key found for this signature in database

View file

@ -3,6 +3,6 @@ import { EntityType } from '@prisma/client';
export const entityFormSchema = z.object({
id: z.number().positive().optional(),
name: z.string().min(3).max(32),
name: z.string().min(1).max(32),
type: z.nativeEnum(EntityType),
});