Openstatus www.openstatus.dev

fix: include pagerduty into pricing table (#898)

authored by

Maximilian Kaske and committed by
GitHub
ceec5995 efffb8d2

+6 -11
+2 -11
apps/web/src/components/ping-response-analysis/multi-region-table.tsx
··· 10 10 TableRow, 11 11 } from "@openstatus/ui"; 12 12 13 - import { StatusCodeBadge } from "@/components/monitor/status-code-badge"; 14 - import { 15 - getTimingPhases, 16 - getTotalLatency, 17 - latencyFormatter, 18 - regionFormatter, 19 - } from "./utils"; 20 - import type { RegionChecker } from "./utils"; 21 - 22 13 import { 23 14 type ColumnDef, 24 15 getCoreRowModel, ··· 56 47 return ( 57 48 <Table> 58 49 <TableCaption>Multi Regions</TableCaption> 59 - <TableHeader> 50 + <TableHeader className="bg-muted/50"> 60 51 {table.getHeaderGroups().map((headerGroup) => ( 61 52 <TableRow key={headerGroup.id}> 62 53 {headerGroup.headers.map((header) => { ··· 66 57 ? null 67 58 : flexRender( 68 59 header.column.columnDef.header, 69 - header.getContext() 60 + header.getContext(), 70 61 )} 71 62 </TableHead> 72 63 );
+4
packages/plans/src/pricing-table.ts
··· 67 67 label: "SMS", 68 68 }, 69 69 { 70 + value: "pagerduty", 71 + label: "PagerDuty", 72 + }, 73 + { 70 74 value: "notification-channels", 71 75 label: "Number of notification channels", 72 76 },