Skip to content

Commit 2fdbb1c

Browse files
authored
fix(showcase): reorder legend — L1-L4 first, add D3, remove D0-D4 (CopilotKit#4540)
Legend now reads: L1-L4 Strip, D2 API, D3 Page Load, D4 Round Trip, D5 Conversation, then indicators.
2 parents 81b2d9a + 8e36bb8 commit 2fdbb1c

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

showcase/shell-dashboard/src/components/adaptive-legend.tsx

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -39,26 +39,26 @@ function LinksLegend() {
3939
function DepthLegend() {
4040
return (
4141
<LegendItem>
42-
<span className="font-semibold text-[var(--text-secondary)]">D0-D4</span>
43-
integration wiring depth (D0 = listed, D4 = full tool rendering)
42+
<span className="font-semibold text-[var(--text-secondary)]">
43+
L1-L4 Strip
44+
</span>
45+
per-integration health levels shown in column header
4446
</LegendItem>
4547
);
4648
}
4749

4850
function HealthLegend() {
4951
return (
5052
<>
51-
{/* Depth/level explanations grouped first */}
52-
<LegendItem>
53-
<span className="font-semibold text-[var(--text-secondary)]">
54-
L1-L4 Strip
55-
</span>
56-
per-integration health levels shown in column header
57-
</LegendItem>
53+
{/* Depth explanations in ascending order */}
5854
<LegendItem>
5955
<span className="font-semibold text-[var(--text-secondary)]">D2</span>
6056
API: responds to a basic CopilotKit API call
6157
</LegendItem>
58+
<LegendItem>
59+
<span className="font-semibold text-[var(--text-secondary)]">D3</span>
60+
Page Load: demo page loads in a browser
61+
</LegendItem>
6262
<LegendItem>
6363
<span className="font-semibold text-[var(--text-secondary)]">D4</span>
6464
Round Trip (RT): single message, full-stack response verification

0 commit comments

Comments
 (0)