From 1335ce996d000def7a93e33853606de693c06f7d Mon Sep 17 00:00:00 2001 From: Siddharth Balyan <52913345+alt-glitch@users.noreply.github.com> Date: Tue, 19 May 2026 11:47:24 +0530 Subject: [PATCH] fix(web): add scheduled column to i18n type definitions (#28549) columnLabels and columnHelp in en.ts include a scheduled entry but the Translations interface in types.ts did not declare it, causing a TypeScript build failure in the Nix derivation. Made the field optional since only en.ts provides it currently. --- web/src/i18n/types.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/web/src/i18n/types.ts b/web/src/i18n/types.ts index 65185cbcb9a..b70df288980 100644 --- a/web/src/i18n/types.ts +++ b/web/src/i18n/types.ts @@ -666,6 +666,7 @@ export interface Translations { columnLabels: { triage: string; todo: string; + scheduled?: string; ready: string; running: string; blocked: string; @@ -675,6 +676,7 @@ export interface Translations { columnHelp: { triage: string; todo: string; + scheduled?: string; ready: string; running: string; blocked: string;