FRONT правки
Правки фронта
This commit is contained in:
@@ -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
|
||||
})
|
||||
|
||||
|
||||
Reference in New Issue
Block a user