mirror of
https://github.com/gethomepage/homepage.git
synced 2025-12-05 21:47:48 +01:00
Merge pull request #1511 from brunoccr/main
Fix Slice error on container.jsx
This commit is contained in:
@@ -16,7 +16,12 @@ export default function Component({ service }) {
|
||||
}
|
||||
|
||||
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;
|
||||
|
||||
Reference in New Issue
Block a user