mirror of
https://github.com/hcengineering/platform.git
synced 2026-09-10 03:37:43 +02:00
i18n russian (#1049)
Signed-off-by: Denis Bykhov <80476319+BykhovDenis@users.noreply.github.com>
This commit is contained in:
@@ -162,7 +162,9 @@ export interface KanbanTemplate extends Doc {
|
||||
/**
|
||||
* @public
|
||||
*/
|
||||
export interface KanbanTemplateSpace extends Space {
|
||||
export interface KanbanTemplateSpace extends Doc {
|
||||
name: IntlString
|
||||
description: IntlString
|
||||
icon: AnyComponent
|
||||
}
|
||||
|
||||
@@ -244,11 +246,11 @@ export async function createKanban (
|
||||
const ranks = [...genRanks(2)]
|
||||
await Promise.all([
|
||||
client.createDoc(task.class.WonState, attachedTo, {
|
||||
title: 'Won' as IntlString,
|
||||
title: 'Won',
|
||||
rank: ranks[0]
|
||||
}),
|
||||
client.createDoc(task.class.LostState, attachedTo, {
|
||||
title: 'Lost' as IntlString,
|
||||
title: 'Lost',
|
||||
rank: ranks[1]
|
||||
})
|
||||
])
|
||||
|
||||
Reference in New Issue
Block a user