Merge pull request #9237 from streetwriters/web/dont-render-properties-on-locked-note

web: don't render properties panel for locked sessions
This commit is contained in:
Abdullah Atta
2026-02-02 09:56:20 +05:00
committed by GitHub

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>