You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
awaitexpect(page.locator("[data-journey-completion-metrics]")).toContainText("Journey progress: 0 of 66 planned items done (0%). 10 sections are active focus areas; 4 are planning context.");
awaitexpect(page.locator("[data-journey-completion-metrics]")).toContainText("Completion model: 0 of 66 planned items complete (0%). Active buckets: 10; inactive buckets: 4.");
367
+
awaitexpect(page.locator("[data-journey-completion-metrics]")).toContainText("Journey progress: 0 of 66 planned items done (0%). 10 sections are active focus areas; 4 are planning context.");
text: `Completion model: ${completionMetricsSnapshot.completedCount} of ${completionMetricsSnapshot.plannedCount} planned items complete (${completionMetricsSnapshot.percentComplete}%). Active buckets: ${completionMetricsSnapshot.activeCount}; inactive buckets: ${completionMetricsSnapshot.inactiveCount}.`,
747
+
text: `Journey progress: ${completionMetricsSnapshot.completedCount} of ${completionMetricsSnapshot.plannedCount} planned items done (${completionMetricsSnapshot.percentComplete}%). ${completionMetricsSnapshot.activeCount} sections are active focus areas; ${completionMetricsSnapshot.inactiveCount} are planning context.`,
@@ -881,7 +885,7 @@ function completionInsightMessages(snapshot, records, mostComplete, leastComplet
881
885
}
882
886
883
887
if(snapshot.inactiveCount>0){
884
-
messages.push(`${snapshot.inactiveCount} section${snapshot.inactiveCount===1 ? "" : "s"} are inactive, so they are visible as planning context but not active focus areas.`);
888
+
messages.push(`${snapshot.inactiveCount} section${snapshot.inactiveCount===1 ? "" : "s"} are planning context, so they stay visible without counting as active focus areas.`);
0 commit comments