From 9a51c1547f49c95605175461f8d2148cdee432fb Mon Sep 17 00:00:00 2001 From: cfngc4594 Date: Sun, 6 Apr 2025 20:38:51 +0800 Subject: [PATCH] feat(problems): add inactive state to dockview panels --- src/app/(app)/problems/[id]/page.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/app/(app)/problems/[id]/page.tsx b/src/app/(app)/problems/[id]/page.tsx index 66179af..450cfaa 100644 --- a/src/app/(app)/problems/[id]/page.tsx +++ b/src/app/(app)/problems/[id]/page.tsx @@ -49,6 +49,7 @@ export default function ProblemPage() { referencePanel: "Description", direction: "within" }, + inactive: true, }, { id: "Submissions", @@ -59,6 +60,7 @@ export default function ProblemPage() { referencePanel: "Solutions", direction: "within" }, + inactive: true, }, { id: "Code", @@ -99,6 +101,7 @@ export default function ProblemPage() { referencePanel: "Testcase", direction: "within" }, + inactive: true, }, ]} />