Ajusta grid do resumo de filas
This commit is contained in:
parent
b94cea2f9a
commit
c66ffa6e0b
1 changed files with 1 additions and 1 deletions
|
|
@ -37,7 +37,7 @@ export function TicketQueueSummaryCards({ queues }: TicketQueueSummaryProps) {
|
|||
}
|
||||
|
||||
return (
|
||||
<div className="grid gap-4 grid-cols-[repeat(auto-fit,minmax(22rem,1fr))]">
|
||||
<div className="grid gap-4 grid-cols-[repeat(auto-fit,minmax(18rem,1fr))]">
|
||||
{data.map((queue) => {
|
||||
const totalOpen = queue.pending + queue.inProgress + queue.paused
|
||||
const breachPercent = totalOpen === 0 ? 0 : Math.round((queue.breached / totalOpen) * 100)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue