Openstatus www.openstatus.dev

fix: region table charts (#1456)

authored by

Maximilian Kaske and committed by
GitHub
4ea67fe7 099581c2

+2 -2
+2 -2
apps/dashboard/src/app/(dashboard)/monitors/[id]/overview/client.tsx
··· 202 202 columns={regionColumns} 203 203 defaultPagination={{ 204 204 pageIndex: 0, 205 - pageSize: selectedRegions?.length ?? 0, 205 + pageSize: regionMetrics.length, 206 206 }} 207 207 /> 208 208 </TabsContent> 209 209 <TabsContent value="chart"> 210 210 <ChartLineRegions 211 211 className="mt-3" 212 - regions={selectedRegions} 212 + regions={regionMetrics.map((region) => region.region)} 213 213 privateLocations={privateLocations} 214 214 data={regionMetrics.reduce( 215 215 (acc, region) => {