move info panel to bottom cause it moves the whole column lol

This commit is contained in:
legop3
2026-07-11 16:28:37 -04:00
parent 18649deeae
commit b393c2b2b4
5 changed files with 13 additions and 12 deletions
@@ -432,14 +432,7 @@ function PtzController({ open, onClose, layout = 'desktop' }) {
const desktopSidebar = (
<>
<div className="shrink-0">
<PtzStatePanel
ptz={ptz}
onClose={onClose}
onRelease={isOperator ? releaseAndClose : null}
releaseDisabled={releasePending}
/>
</div>
<div className="shrink-0">
<PtzQueueList queue={ptz?.queue} operatorLabel={ptz?.operatorLabel} />
</div>
@@ -460,6 +453,14 @@ function PtzController({ open, onClose, layout = 'desktop' }) {
<div className="shrink-0">
<ReplaySourcesPanel panelId="ptz-controller-replay" />
</div>
<div className="shrink-0">
<PtzStatePanel
ptz={ptz}
onClose={onClose}
onRelease={isOperator ? releaseAndClose : null}
releaseDisabled={releasePending}
/>
</div>
</>
);