From 16bbd1e4b88236ab57678311869e889afa4d2e4e Mon Sep 17 00:00:00 2001 From: Esdras Renan Date: Fri, 14 Nov 2025 11:17:51 -0300 Subject: [PATCH] ui: ajustar layout do prazo de reabertura abaixo da linha de acoes --- .../tickets/ticket-summary-header.tsx | 100 +++++++++--------- 1 file changed, 50 insertions(+), 50 deletions(-) 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} - - } />