diff --git a/web/src/Sidebar.jsx b/web/src/Sidebar.jsx index 4497dba15..96bd5c52a 100644 --- a/web/src/Sidebar.jsx +++ b/web/src/Sidebar.jsx @@ -69,9 +69,11 @@ function CameraSection({ sortedCameras }) { return ( - {sortedCameras.map(([camera]) => ( - - ))} +
+ {sortedCameras.map(([camera]) => ( + + ))} +
); @@ -82,16 +84,18 @@ function RecordingSection({ sortedCameras }) { return ( - {sortedCameras.map(([camera, _]) => { - return ( - - ); - })} +
+ {sortedCameras.map(([camera, _]) => { + return ( + + ); + })} +
);