1
0

FRONT правки

Правки фронта
This commit is contained in:
2026-01-12 04:03:44 +07:00
parent cd2e291394
commit 61c336b703
5 changed files with 20 additions and 20 deletions

View File

@@ -110,12 +110,12 @@ const filteredTotalTasks = computed(() => {
})
const inProgressTasks = computed(() => {
const col = filteredColumns.value.find(c => c.id === 3) // В работе
const col = filteredColumns.value.find(c => c.id === 2) // В работе
return col ? col.cards.length : 0
})
const completedTasks = computed(() => {
const col = filteredColumns.value.find(c => c.id === 5) // Готово
const col = filteredColumns.value.find(c => c.id === 4) // Готово
return col ? col.cards.length : 0
})