diff --git a/src/components/tickets/ticket-checklist-card.tsx b/src/components/tickets/ticket-checklist-card.tsx index c6428ef..edbeb55 100644 --- a/src/components/tickets/ticket-checklist-card.tsx +++ b/src/components/tickets/ticket-checklist-card.tsx @@ -309,10 +309,10 @@ export function TicketChecklistCard({ const options = item.options ?? [] return ( -
+
{isQuestion ? ( -
+
?
) : ( @@ -332,10 +332,10 @@ export function TicketChecklistCard({ toast.error(error instanceof Error ? error.message : "Falha ao atualizar checklist.") } }} - className="mt-1" + className="mt-0.5" /> )} -
+
{editingId === item.id && canEdit && !isResolved ? (
{options.map((option) => ( ))} )} -
+
{required ? ( - + Obrigatório ) : ( - + Opcional )} {isQuestion && ( - + Pergunta )} {templateLabel ? ( - - Template: {templateLabel} + + {templateLabel} ) : null}