Skip to content

Commit 5237675

Browse files
committed
Polish status legend order and Project Journey count labels - PR_26156_190-status-legend-and-journey-counts-polish
1 parent d766e92 commit 5237675

32 files changed

Lines changed: 187 additions & 83 deletions

admin/notes.js

Lines changed: 18 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -7,34 +7,39 @@ const STATUS_ICON_PATTERN = /^\[([ xX.!?])\]\s*(.*)$/;
77
const NOTE_INDEX_FILE = "index.txt";
88
const STATUS_MARKERS = {
99
" ": {
10+
marker: "[ ]",
1011
icon: "⬜",
1112
label: "Not Started",
1213
name: "not-started",
1314
title: "Not Started"
1415
},
15-
".": {
16-
icon: "🟡",
17-
label: "In Progress",
18-
name: "in-progress",
19-
title: "In Progress"
20-
},
21-
x: {
22-
icon: "✅",
23-
label: "Complete",
24-
name: "complete",
25-
title: "Complete"
26-
},
2716
"!": {
17+
marker: "[!]",
2818
icon: "⛔",
2919
label: "Blocker",
3020
name: "blocker",
3121
title: "Blocker"
3222
},
3323
"?": {
24+
marker: "[?]",
3425
icon: "❓",
3526
label: "Decide",
3627
name: "decide",
3728
title: "Decide which project questions need their own subnote files."
29+
},
30+
".": {
31+
marker: "[.]",
32+
icon: "🟡",
33+
label: "In Progress",
34+
name: "in-progress",
35+
title: "In Progress"
36+
},
37+
x: {
38+
marker: "[x]",
39+
icon: "✅",
40+
label: "Complete",
41+
name: "complete",
42+
title: "Complete"
3843
}
3944
};
4045

@@ -332,7 +337,7 @@ class AdminNotesViewer {
332337
item.dataset.adminNotesLegendItem = marker.name;
333338
const icon = this.documentRef.createElement("span");
334339
icon.dataset.adminNotesLegendIcon = marker.name;
335-
icon.textContent = marker.icon;
340+
icon.textContent = `${marker.marker} ${marker.icon}`;
336341
item.append(icon);
337342
item.append(this.documentRef.createTextNode(` ${marker.label}`));
338343
this.legendList?.append(item);

docs_build/dev/reports/coverage_changed_js_guardrail.txt

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,8 @@ Missing changed runtime JS files are WARN, not FAIL.
66
Source: Playwright/Chromium built-in V8 coverage from the active Playwright run.
77

88
Changed runtime JS files considered:
9-
(71%) toolbox/project-workspace/project-workspace.js - executed lines 264/264; executed functions 17/24
10-
(71%) toolbox/tools-page-accordions.js - executed lines 826/826; executed functions 53/75
11-
(84%) toolbox/toolRegistry.js - executed lines 1788/1788; executed functions 31/37
12-
(91%) toolbox/project-journey/project-journey-mock-repository.js - executed lines 478/478; executed functions 52/57
13-
(93%) toolbox/project-journey/project-journey.js - executed lines 433/433; executed functions 43/46
9+
(91%) toolbox/project-journey/project-journey-mock-repository.js - executed lines 480/480; executed functions 52/57
10+
(94%) toolbox/project-journey/project-journey.js - executed lines 447/447; executed functions 45/48
1411

1512
Guardrail warnings:
1613
(100%) none - no changed runtime JS coverage warnings

docs_build/dev/reports/dependency_gating_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Dependency Gating Report
22

3-
Generated: 2026-06-06T17:05:49.467Z
3+
Generated: 2026-06-06T17:40:56.189Z
44
Status: PASS
55

66
## Gate Order

docs_build/dev/reports/dependency_hydration_reuse_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Dependency Hydration Reuse Report
22

3-
Generated: 2026-06-06T17:05:49.468Z
3+
Generated: 2026-06-06T17:40:56.189Z
44
Status: PASS
55

66
## Summary

docs_build/dev/reports/execution_graph_reuse_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Execution Graph Reuse Report
22

3-
Generated: 2026-06-06T17:05:49.468Z
3+
Generated: 2026-06-06T17:40:56.189Z
44
Status: PASS
55

66
## Summary

docs_build/dev/reports/failure_fingerprint_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Failure Fingerprint Report
22

3-
Generated: 2026-06-06T17:05:49.468Z
3+
Generated: 2026-06-06T17:40:56.189Z
44
Status: PASS
55

66
## Summary

docs_build/dev/reports/incremental_validation_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Incremental Validation Report
22

3-
Generated: 2026-06-06T17:05:49.469Z
3+
Generated: 2026-06-06T17:40:56.190Z
44
Status: PASS
55

66
## Reuse Summary

docs_build/dev/reports/lane_compilation_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Lane Compilation Report
22

3-
Generated: 2026-06-06T17:05:49.467Z
3+
Generated: 2026-06-06T17:40:56.189Z
44
Status: PASS
55

66
## Lane Graph

docs_build/dev/reports/lane_deduplication_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Lane Deduplication Report
22

3-
Generated: 2026-06-06T17:05:49.468Z
3+
Generated: 2026-06-06T17:40:56.189Z
44
Status: PASS
55

66
## Summary

docs_build/dev/reports/lane_input_validation_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Lane Input Validation Report
22

3-
Generated: 2026-06-06T17:05:49.469Z
3+
Generated: 2026-06-06T17:40:56.190Z
44
Status: PASS
55

66
## Input Files

0 commit comments

Comments
 (0)