Skip to content

Commit ec25dc5

Browse files
authored
chore: let 5 characters for tag (#249)
1 parent 0be1133 commit ec25dc5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

components/teams/TeamForm.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ export default {
100100
validationSchema: toTypedSchema(
101101
z.object({
102102
team_name: z.string().min(1),
103-
short_name: z.string().min(1).max(3),
103+
short_name: z.string().min(1).max(5),
104104
}),
105105
),
106106
}),

0 commit comments

Comments
 (0)