Feature/product platform foundation v0.62 #1
@@ -63,7 +63,7 @@ function BranchRow({ id, label, active, isNew, onClick }) {
|
|||||||
{/* Active indicator — ● vs ○ */}
|
{/* Active indicator — ● vs ○ */}
|
||||||
<span
|
<span
|
||||||
className={`flex-none leading-none text-base ${
|
className={`flex-none leading-none text-base ${
|
||||||
isActive ? "text-blue-500" : "text-gray-300"
|
isActive ? "text-blue-500" : "text-gray-400"
|
||||||
}`}
|
}`}
|
||||||
aria-hidden="true"
|
aria-hidden="true"
|
||||||
>
|
>
|
||||||
|
|||||||
@@ -833,7 +833,7 @@ export default function ReasoningWorkspace({
|
|||||||
return (
|
return (
|
||||||
<div className="space-y-4">
|
<div className="space-y-4">
|
||||||
<h2 className="text-[11px] font-medium tracking-widest uppercase text-gray-300">
|
<h2 className="text-[11px] font-medium tracking-widest uppercase text-gray-300">
|
||||||
Open questions
|
In this branch — Open questions
|
||||||
</h2>
|
</h2>
|
||||||
<div className="space-y-1">
|
<div className="space-y-1">
|
||||||
{openNodes.map((node) => {
|
{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"}`}
|
className={`text-xs transition ${panelVariant === "a" ? "font-medium text-gray-700 underline" : "text-gray-400 hover:text-gray-500"}`}
|
||||||
>
|
>
|
||||||
Panel A
|
A
|
||||||
</button>
|
</button>
|
||||||
<span className="text-gray-300">/</span>
|
<span className="text-gray-300">/</span>
|
||||||
<button
|
<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"}`}
|
className={`text-xs transition ${panelVariant === "b" ? "font-medium text-gray-700 underline" : "text-gray-400 hover:text-gray-500"}`}
|
||||||
>
|
>
|
||||||
Panel B
|
B
|
||||||
</button>
|
</button>
|
||||||
<span className="text-gray-300">/</span>
|
<span className="text-gray-300">/</span>
|
||||||
<button
|
<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"}`}
|
className={`text-xs transition ${panelVariant === "c" ? "font-medium text-gray-700 underline" : "text-gray-400 hover:text-gray-500"}`}
|
||||||
>
|
>
|
||||||
Panel C
|
C (exp)
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div className="opacity-75">
|
<div className="opacity-75">
|
||||||
@@ -1165,8 +1165,11 @@ export default function ReasoningWorkspace({
|
|||||||
{hasCurrentSummaryCondition && (
|
{hasCurrentSummaryCondition && (
|
||||||
<div className="space-y-6 lg:col-span-1">
|
<div className="space-y-6 lg:col-span-1">
|
||||||
<OriginalSituation scenario={scenario} centralStatement={graph?.centralStatement} />
|
<OriginalSituation scenario={scenario} centralStatement={graph?.centralStatement} />
|
||||||
|
{/* RTO.25B — temporarily hidden to reduce competing navigation while branch-experiment is active */}
|
||||||
|
<div className="hidden">
|
||||||
<InvestigationMap turnCount={investigationHistory.length} />
|
<InvestigationMap turnCount={investigationHistory.length} />
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
|||||||
Reference in New Issue
Block a user