diff --git a/convex/tickets.ts b/convex/tickets.ts index 3575edb..22d7619 100644 --- a/convex/tickets.ts +++ b/convex/tickets.ts @@ -2081,6 +2081,10 @@ export const getById = query({ ? t.checklist.map((item) => ({ id: item.id, text: item.text, + description: item.description ?? undefined, + type: item.type ?? "checkbox", + options: item.options ?? undefined, + answer: item.answer ?? undefined, done: item.done, required: typeof item.required === "boolean" ? item.required : true, templateId: item.templateId ? String(item.templateId) : undefined,