diff --git a/web/src/components/TimelineSummary.jsx b/web/src/components/TimelineSummary.jsx index 503623930..18f039079 100644 --- a/web/src/components/TimelineSummary.jsx +++ b/web/src/components/TimelineSummary.jsx @@ -2,6 +2,7 @@ import { h } from 'preact'; import useSWR from 'swr'; import ActivityIndicator from './ActivityIndicator'; import { formatUnixTimestampToDateTime } from '../utils/dateUtil'; +import About from '../icons/About'; import PlayIcon from '../icons/Play'; import ExitIcon from '../icons/Exit'; import { Zone } from '../icons/Zone'; @@ -104,9 +105,19 @@ export default function TimelineSummary({ event, onFrameSelected }) { {timeIndex >= 0 ? ( -
- Disclaimer: This data comes from the detect feed but is shown on the recordings, it is unlikely that the - streams are perfectly in sync so the bounding box and the footage will not line up perfectly. +
+
+
Disclaimer
+ +
) : null}
diff --git a/web/src/icons/About.jsx b/web/src/icons/About.jsx new file mode 100644 index 000000000..6271b2d52 --- /dev/null +++ b/web/src/icons/About.jsx @@ -0,0 +1,19 @@ +import { h } from 'preact'; +import { memo } from 'preact/compat'; + +export function About({ className = '' }) { + return ( + + + + ); +} + +export default memo(About);