diff --git a/web/src/Sidebar.jsx b/web/src/Sidebar.jsx index 15092500f..1e6c4d28b 100644 --- a/web/src/Sidebar.jsx +++ b/web/src/Sidebar.jsx @@ -21,7 +21,7 @@ export default function Sidebar() { {cameras.filter(([cam, conf]) => conf.gui.show).sort(([aCam, aConf], [bCam, bConf]) => aConf.gui.order === bConf.gui.order ? 0 : (aConf.gui.order > bConf.gui.order ? 1 : -1)).map(([camera]) => ( - + ))} @@ -37,6 +37,7 @@ export default function Sidebar() { if (conf.record.enabled) { return ( {Object.entries(config.cameras).filter(([cam, conf]) => conf.gui.show).sort(([aCam, aConf], [bCam, bConf]) => aConf.gui.order === bConf.gui.order ? 0 : (aConf.gui.order > bConf.gui.order ? 1 : -1)).map(([camera, conf]) => ( - + ))} );