Merge pull request #1511 from brunoccr/main

Fix Slice error on container.jsx
pull/1513/head
shamoon 1 year ago committed by GitHub
commit ec25267235
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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;

Loading…
Cancel
Save