Add UNKNOWN and NOT_IMPLEMENTED measure states

Introduce two new measure states across the full stack: database
migration, Go coredata, GraphQL schema, MCP specification, and
frontend UI (labels, badge variants, and colors).

Signed-off-by: Bryan Frimin <bryan@getprobo.com>
This commit is contained in:
Bryan Frimin
2026-04-01 17:45:19 +02:00
parent d069201899
commit a2f0a37b7b
8 changed files with 49 additions and 1 deletions

View File

@@ -19,6 +19,8 @@ export const measureStates = [
"IN_PROGRESS",
"NOT_APPLICABLE",
"NOT_STARTED",
"UNKNOWN",
"NOT_IMPLEMENTED",
] as const;
export function getMeasureStateLabel(__: Translator, state: string) {
@@ -31,6 +33,10 @@ export function getMeasureStateLabel(__: Translator, state: string) {
return __("Not Applicable");
case "NOT_STARTED":
return __("Not Started");
case "UNKNOWN":
return __("Unknown");
case "NOT_IMPLEMENTED":
return __("Not Implemented");
default:
return __("Unknown");
}