Merge pull request #1511 from brunoccr/main

Fix Slice error on container.jsx
このコミットが含まれているのは:
shamoon 2023-05-17 13:21:32 -07:00 committed by GitHub
コミット ec25267235
この署名に対応する既知のキーがデータベースに存在しません
GPGキーID: 4AEE18F83AFDEB23

ファイルの表示

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