diff --git a/pages/ticket/panel/create.vue b/pages/ticket/panel/create.vue index 8952d0e..55d1726 100644 --- a/pages/ticket/panel/create.vue +++ b/pages/ticket/panel/create.vue @@ -14,7 +14,7 @@ const textChannels = ref(await loadTextChannels()); const formSchema = toTypedSchema( zod.object({ title: zod.string().min(1).max(100), - message: zod.string().min(1).max(100), + message: zod.string().min(1).max(1000), embed_color: zod.string().min(7).max(7), channel_id: zod.string(), }), @@ -51,7 +51,7 @@ useHead({

Create Panel

- + diff --git a/pages/ticket/panel/edit/[id].vue b/pages/ticket/panel/edit/[id].vue index 65953e8..34c2696 100644 --- a/pages/ticket/panel/edit/[id].vue +++ b/pages/ticket/panel/edit/[id].vue @@ -20,7 +20,7 @@ const textChannels = ref(await loadTextChannels()); const formSchema = toTypedSchema( zod.object({ title: zod.string().min(1).max(100), - message: zod.string().min(1).max(100), + message: zod.string().min(1).max(1000), embed_color: zod.string().min(7).max(7), channel_id: zod.string(), }), @@ -112,7 +112,7 @@ useHead({ - +