diff --git a/src/components/tickets/ticket-summary-header.tsx b/src/components/tickets/ticket-summary-header.tsx index 5edc9be..7cf9361 100644 --- a/src/components/tickets/ticket-summary-header.tsx +++ b/src/components/tickets/ticket-summary-header.tsx @@ -1096,17 +1096,17 @@ export function TicketSummaryHeader({ ticket }: TicketHeaderProps) { return (
-
- {status !== "RESOLVED" ? ( - - ) : canReopenTicket ? ( -
+
+
+ {status !== "RESOLVED" ? ( + + ) : canReopenTicket ? ( - {reopenDeadlineLabel ? ( -

Prazo para reabrir: {reopenDeadlineLabel}

- ) : null} -
- ) : null} - {workSummary ? ( - - - - {formattedTotalWorked} - - - -
- Horas internas: {formatDuration(internalWorkedMs)} - Horas externas: {formatDuration(externalWorkedMs)} -
-
-
- ) : null} - {!editing ? ( + ) : null} + {workSummary ? ( + + + + {formattedTotalWorked} + + + +
+ Horas internas: {formatDuration(internalWorkedMs)} + Horas externas: {formatDuration(externalWorkedMs)} +
+
+
+ ) : null} + {!editing ? ( + + ) : null} + } /> +
+ {status === "RESOLVED" && canReopenTicket && reopenDeadlineLabel ? ( +

Prazo para reabrir: {reopenDeadlineLabel}

) : null} - - } />