Openstatus www.openstatus.dev
6
fork

Configure Feed

Select the types of activity you want to include in your feed.

🔥 add status sort (#886)

authored by

Thibault Le Ouay and committed by
GitHub
53c84a74 db12f7b2

+3 -1
+3 -1
apps/web/src/components/ping-response-analysis/columns.tsx
··· 18 18 }, 19 19 { 20 20 accessorKey: "status", 21 - header: "Status", 21 + header: ({ column }) => { 22 + return <DataTableColumnHeader column={column} title="Status" />; 23 + }, 22 24 cell: ({ row }) => { 23 25 return <StatusCodeBadge statusCode={row.original.status} />; 24 26 },