mirror of
https://github.com/yldio/copilot.git
synced 2024-11-14 15:20:06 +02:00
fix(cp-frontend): handle inexistent healthy status
This commit is contained in:
parent
1384d5b50a
commit
d8ac561552
@ -36,9 +36,9 @@ export const InstancesTooltip = ({ instancesTooltip }) => {
|
||||
|
||||
const message =
|
||||
type === 'healthy'
|
||||
? healthMessages[instance.healthy.toLowerCase()]
|
||||
? healthMessages[(instance.healthy || '').toLowerCase()]
|
||||
: type === 'status'
|
||||
? statusMessages[instance.status.toLowerCase()]
|
||||
? statusMessages[(instance.status || '').toLowerCase()]
|
||||
: '';
|
||||
|
||||
return (
|
||||
|
Loading…
Reference in New Issue
Block a user