mirror of
https://github.com/karl0ss/homepage.git
synced 2025-05-01 21:13:39 +01:00
Fix Slice error on container.jsx
This commit is contained in:
parent
1091447b8b
commit
cc36ad19ee
@ -16,7 +16,12 @@ export default function Component({ service }) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (!data) {
|
if (!data) {
|
||||||
return <Container service={service} />;
|
return (
|
||||||
|
<Container service={service}>
|
||||||
|
<Block label="changedetectionio.diffsDetected" />
|
||||||
|
<Block label="changedetectionio.totalObserved" />
|
||||||
|
</Container>
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
const totalObserved = Object.keys(data).length;
|
const totalObserved = Object.keys(data).length;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user