Fix health report property names
Some checks failed
CI / Frontend Lint & Type Check (push) Has been cancelled
CI / Frontend Build (push) Has been cancelled
CI / Backend Lint (push) Has been cancelled
CI / Backend Tests (push) Has been cancelled
CI / Docker Build (push) Has been cancelled
CI / Security Scan (push) Has been cancelled
Deploy / Build & Push Images (push) Has been cancelled
Deploy / Deploy to Server (push) Has been cancelled
Deploy / Notify (push) Has been cancelled
Some checks failed
CI / Frontend Lint & Type Check (push) Has been cancelled
CI / Frontend Build (push) Has been cancelled
CI / Backend Lint (push) Has been cancelled
CI / Backend Tests (push) Has been cancelled
CI / Docker Build (push) Has been cancelled
CI / Security Scan (push) Has been cancelled
Deploy / Build & Push Images (push) Has been cancelled
Deploy / Deploy to Server (push) Has been cancelled
Deploy / Notify (push) Has been cancelled
This commit is contained in:
@ -476,10 +476,10 @@ export default function WatchlistPage() {
|
|||||||
{selectedHealth && (
|
{selectedHealth && (
|
||||||
<div className="space-y-2">
|
<div className="space-y-2">
|
||||||
{[
|
{[
|
||||||
{ label: 'DNS', value: selectedHealth.dns_resolves },
|
{ label: 'DNS', value: selectedHealth.dns?.has_a },
|
||||||
{ label: 'HTTP', value: selectedHealth.http_status === 200 },
|
{ label: 'HTTP', value: selectedHealth.http?.is_reachable },
|
||||||
{ label: 'SSL', value: selectedHealth.ssl_valid },
|
{ label: 'SSL', value: selectedHealth.ssl?.has_certificate },
|
||||||
{ label: 'Parked', value: !selectedHealth.is_parked },
|
{ label: 'Parked', value: !selectedHealth.dns?.is_parked && !selectedHealth.http?.is_parked },
|
||||||
].map((check) => (
|
].map((check) => (
|
||||||
<div key={check.label} className="flex items-center justify-between py-2 border-b border-white/[0.05]">
|
<div key={check.label} className="flex items-center justify-between py-2 border-b border-white/[0.05]">
|
||||||
<span className="text-xs font-mono text-white/50 uppercase">{check.label}</span>
|
<span className="text-xs font-mono text-white/50 uppercase">{check.label}</span>
|
||||||
|
|||||||
Reference in New Issue
Block a user