mirror of
https://github.com/karl0ss/homepage.git
synced 2025-05-02 05:23:39 +01:00
make portainer error detection more specific
This commit is contained in:
parent
91e0ec2f83
commit
0101e8ccb9
@ -23,8 +23,8 @@ export default function Component({ service }) {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (containersData.error || !Array.isArray(containersData)) {
|
if (containersData.error || containersData.message) {
|
||||||
// containersData can be itself an error object
|
// containersData can be itself an error object e.g. if environment fails
|
||||||
return <Container service={service} error={ containersData?.error ?? containersData } />;
|
return <Container service={service} error={ containersData?.error ?? containersData } />;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user