test(ui): clarify branch focus and passive updates

This commit is contained in:
2026-08-20 06:01:32 +01:00
parent ad42f67800
commit 0ac2e05c40
2 changed files with 9 additions and 6 deletions
+1 -1
View File
@@ -63,7 +63,7 @@ function BranchRow({ id, label, active, isNew, onClick }) {
{/* Active indicator — ● vs ○ */}
<span
className={`flex-none leading-none text-base ${
isActive ? "text-blue-500" : "text-gray-300"
isActive ? "text-blue-500" : "text-gray-400"
}`}
aria-hidden="true"
>
+8 -5
View File
@@ -833,7 +833,7 @@ export default function ReasoningWorkspace({
return (
<div className="space-y-4">
<h2 className="text-[11px] font-medium tracking-widest uppercase text-gray-300">
Open questions
In this branch Open questions
</h2>
<div className="space-y-1">
{openNodes.map((node) => {
@@ -1118,7 +1118,7 @@ export default function ReasoningWorkspace({
}}
className={`text-xs transition ${panelVariant === "a" ? "font-medium text-gray-700 underline" : "text-gray-400 hover:text-gray-500"}`}
>
Panel A
A
</button>
<span className="text-gray-300">/</span>
<button
@@ -1131,7 +1131,7 @@ export default function ReasoningWorkspace({
}}
className={`text-xs transition ${panelVariant === "b" ? "font-medium text-gray-700 underline" : "text-gray-400 hover:text-gray-500"}`}
>
Panel B
B
</button>
<span className="text-gray-300">/</span>
<button
@@ -1144,7 +1144,7 @@ export default function ReasoningWorkspace({
}}
className={`text-xs transition ${panelVariant === "c" ? "font-medium text-gray-700 underline" : "text-gray-400 hover:text-gray-500"}`}
>
Panel C
C (exp)
</button>
</div>
<div className="opacity-75">
@@ -1165,7 +1165,10 @@ export default function ReasoningWorkspace({
{hasCurrentSummaryCondition && (
<div className="space-y-6 lg:col-span-1">
<OriginalSituation scenario={scenario} centralStatement={graph?.centralStatement} />
<InvestigationMap turnCount={investigationHistory.length} />
{/* RTO.25B — temporarily hidden to reduce competing navigation while branch-experiment is active */}
<div className="hidden">
<InvestigationMap turnCount={investigationHistory.length} />
</div>
</div>
)}
</div>