Skip to content

Commit

Permalink
Added health check URL to health dashboard.
Browse files Browse the repository at this point in the history
  • Loading branch information
anilnatha committed Oct 15, 2024
1 parent 5518c5a commit 43bbe4a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/routes/health-dashboard/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,12 @@ function HealthDashboard() {
},
{ field: "landingPageUrl",
cellRenderer: LinkCellRenderer,
headerName: "Landing Page", filter: true, cellStyle: { color: '#0000FF', textDecoration: 'underline' }},
headerName: "Landing Page", filter: true, cellStyle: { color: '#0000FF', textDecoration: 'underline' }
},
{ field: "healthCheckUrl",
cellRenderer: LinkCellRenderer,
headerName: "Health Check Page", filter: true, cellStyle: { color: '#0000FF', textDecoration: 'underline' }
},
{ field: "date", valueGetter: "data.healthChecks[0].date", headerName: "Date", filter: true },
]);

Expand Down

0 comments on commit 43bbe4a

Please sign in to comment.