chain-studio/lib
flemming-it e9538b66b7
Some checks failed
Security / Security check (push) Failing after 1s
fix(welcome): module check now looks at capabilities, not module names
The welcome checklist's "Install a text module" item used:
  m.any((x) => x.name.startsWith('text.'))

But ModuleSummary.name is the module identifier (text-extract,
text-summarize, …), not the capability identifier (text.extract,
text.summarize, …). The check never matched even when several
text-* modules were installed — Stefan saw the item pending with
4 text capabilities live.

Fix: check capability names instead, which carry the dot-namespace:
  m.any((x) => x.capabilities.any((c) => c.startsWith('text.')))

Semantically aligned with the onboarding intent ("any text.*
capability available").

Signed-off-by: flemming-it <stefan.a.flemming@googlemail.com>
2026-05-23 10:37:37 +02:00
..
data feat(studio): hub maintenance panel with reset action (v0.45.0) 2026-05-09 18:52:19 +02:00
l10n feat(studio): contextual "Add registry token" CTA on install auth wall (v0.46.0) 2026-05-09 19:32:13 +02:00
pages fix(welcome): module check now looks at capabilities, not module names 2026-05-23 10:37:37 +02:00
theme fix(studio): doctor i18n + light-mode AppBar contrast (v0.33.1) 2026-05-08 13:43:17 +02:00
widgets feat(studio): hub maintenance panel with reset action (v0.45.0) 2026-05-09 18:52:19 +02:00
main.dart feat(studio): operator QoL — flow runnability, audit grouping, batch approvals, welcome celebration (v0.42.0) 2026-05-09 11:24:57 +02:00