mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-05-31 06:51:29 +00:00
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.
This commit is contained in:
parent
69b1d31a19
commit
1335ce996d
1 changed files with 2 additions and 0 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue