web: don't render properties panel for locked sessions

Signed-off-by: 01zulfi <85733202+01zulfi@users.noreply.github.com>
This commit is contained in:
01zulfi
2026-01-17 14:04:38 +05:00
parent fa4f4e7bea
commit 94dbec4486

View File

@@ -229,7 +229,8 @@ export default function TabsView() {
) : null}
{arePropertiesVisible &&
activeSession &&
activeSession.type !== "new" && (
activeSession.type !== "new" &&
activeSession.type !== "locked" && (
<Pane id="properties-pane" initialSize={250} minSize={250}>
<Properties sessionId={activeSession.id} />
</Pane>