From 0451172bfa4c52d6d69a4eaac1e9b85ea2924e4c Mon Sep 17 00:00:00 2001 From: gsxdsm Date: Thu, 4 Jun 2026 14:43:54 -0700 Subject: [PATCH] =?UTF-8?q?fix(ci):=20theme-token=20conventions=20in=20fie?= =?UTF-8?q?ld=20badges=20(white=20keyword,=20--text-muted)=20+=20roadmap?= =?UTF-8?q?=20plugin=20schema=20literal=20107=E2=86=92108?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.8 (1M context) --- packages/dashboard/app/components/TaskCard.css | 2 +- packages/dashboard/app/components/TaskCard.tsx | 4 ++-- packages/dashboard/app/components/TaskFieldsSection.css | 8 ++++---- .../src/store/__tests__/roadmap-store.test.ts | 4 ++-- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/packages/dashboard/app/components/TaskCard.css b/packages/dashboard/app/components/TaskCard.css index 99da2284b2..7be8c7f0cc 100644 --- a/packages/dashboard/app/components/TaskCard.css +++ b/packages/dashboard/app/components/TaskCard.css @@ -1465,7 +1465,7 @@ border: 1px solid var(--border-color, #2a2d34); border-radius: 999px; background: var(--chip-bg, #1c1f26); - color: var(--text-secondary, #b4b8c0); + color: var(--text-muted, #b4b8c0); font-size: 11px; line-height: 1.5; max-width: 16ch; diff --git a/packages/dashboard/app/components/TaskCard.tsx b/packages/dashboard/app/components/TaskCard.tsx index 373e1b4824..56037e61ce 100644 --- a/packages/dashboard/app/components/TaskCard.tsx +++ b/packages/dashboard/app/components/TaskCard.tsx @@ -329,7 +329,7 @@ function renderCardFieldBadge( key={field.id} className="card-field-badge card-field-badge--enum" title={`${field.name}: ${labelOf(value)}`} - style={color ? { backgroundColor: color, borderColor: color, color: "#fff" } : undefined} + style={color ? { backgroundColor: color, borderColor: color, color: "white" } : undefined} > {labelOf(value)} @@ -346,7 +346,7 @@ function renderCardFieldBadge( {labelOf(v)} diff --git a/packages/dashboard/app/components/TaskFieldsSection.css b/packages/dashboard/app/components/TaskFieldsSection.css index 4a4bc08f48..6e0d69f31e 100644 --- a/packages/dashboard/app/components/TaskFieldsSection.css +++ b/packages/dashboard/app/components/TaskFieldsSection.css @@ -16,7 +16,7 @@ .task-field-label { font-size: 12px; font-weight: 600; - color: var(--text-secondary, #8a8f98); + color: var(--text-muted, #8a8f98); text-transform: uppercase; letter-spacing: 0.02em; } @@ -70,7 +70,7 @@ border: 1px solid var(--border-color, #2a2d34); border-radius: 999px; background: var(--chip-bg, #1c1f26); - color: var(--text-secondary, #b4b8c0); + color: var(--text-muted, #b4b8c0); font-size: 12px; cursor: pointer; transition: background 0.12s ease, border-color 0.12s ease, color 0.12s ease; @@ -183,7 +183,7 @@ padding: 4px 0; background: none; border: none; - color: var(--text-secondary, #8a8f98); + color: var(--text-muted, #8a8f98); font-size: 12px; font-weight: 600; text-transform: uppercase; @@ -209,6 +209,6 @@ .task-field-orphaned-value { font-size: 13px; - color: var(--text-secondary, #b4b8c0); + color: var(--text-muted, #b4b8c0); word-break: break-word; } diff --git a/plugins/fusion-plugin-roadmap/src/store/__tests__/roadmap-store.test.ts b/plugins/fusion-plugin-roadmap/src/store/__tests__/roadmap-store.test.ts index 069ce0b064..2e16e018ca 100644 --- a/plugins/fusion-plugin-roadmap/src/store/__tests__/roadmap-store.test.ts +++ b/plugins/fusion-plugin-roadmap/src/store/__tests__/roadmap-store.test.ts @@ -743,10 +743,10 @@ describe("RoadmapStore", () => { }); describe("schema version", () => { - it("schema version is 107 after init", () => { + it("schema version is 108 after init", () => { // Tracks @fusion/core's SCHEMA_VERSION (the roadmap store layers on core's // Database). Bump this in lockstep when core adds a migration. - expect(db.getSchemaVersion()).toBe(107); + expect(db.getSchemaVersion()).toBe(108); }); });