fix: Add is_valid to SSL in simulated health reports
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:
@ -178,7 +178,7 @@ export default function PortfolioPage() {
|
||||
recommendations: [],
|
||||
dns: { has_a: true, has_ns: true, has_mx: false, nameservers: [], is_parked: false },
|
||||
http: { is_reachable: true, status_code: 200, is_parked: false },
|
||||
ssl: { has_certificate: true },
|
||||
ssl: { has_certificate: true, is_valid: true },
|
||||
}
|
||||
setHealthReports(prev => ({ ...prev, [domain.id]: simulatedReport }))
|
||||
})
|
||||
@ -204,7 +204,7 @@ export default function PortfolioPage() {
|
||||
recommendations: [],
|
||||
dns: { has_a: true, has_ns: true, has_mx: false, nameservers: [], is_parked: false },
|
||||
http: { is_reachable: true, status_code: 200, is_parked: false },
|
||||
ssl: { has_certificate: true },
|
||||
ssl: { has_certificate: true, is_valid: true },
|
||||
}
|
||||
setHealthReports(prev => ({ ...prev, [domainId]: simulatedReport }))
|
||||
showToast('Health check complete', 'success')
|
||||
|
||||
Reference in New Issue
Block a user