mirror of
https://github.com/DI0IK/homepage-plus.git
synced 2025-07-08 06:38:46 +00:00
Merge pull request #1511 from brunoccr/main
Fix Slice error on container.jsx
This commit is contained in:
commit
ec25267235
1 changed files with 6 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue