mirror of
https://github.com/karl0ss/homepage.git
synced 2025-04-29 12:03:41 +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)) {
|
||||
// containersData can be itself an error object
|
||||
if (containersData.error || containersData.message) {
|
||||
// containersData can be itself an error object e.g. if environment fails
|
||||
return <Container service={service} error={ containersData?.error ?? containersData } />;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user