mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-02-03 01:35:22 +03:00
Only show the current detector
This commit is contained in:
parent
77ee99279d
commit
3ca33ff3d7
@ -71,13 +71,11 @@ export default function Debug() {
|
|||||||
</Tr>
|
</Tr>
|
||||||
</Thead>
|
</Thead>
|
||||||
<Tbody>
|
<Tbody>
|
||||||
{detectorNames.map((detector, i) => (
|
<Tr>
|
||||||
<Tr key={i} index={i}>
|
|
||||||
{detectorDataKeys.map((name) => (
|
{detectorDataKeys.map((name) => (
|
||||||
<Td key={`${name}-${detector}`}>{detectors[detector][name]}</Td>
|
<Td key={`${name}-${detector}`}>{detectors[detector][name]}</Td>
|
||||||
))}
|
))}
|
||||||
</Tr>
|
</Tr>
|
||||||
))}
|
|
||||||
</Tbody>
|
</Tbody>
|
||||||
</Table>
|
</Table>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user