diff --git a/frontend/src/components/dashboard/IrisPanel.vue b/frontend/src/components/dashboard/IrisPanel.vue index 58205f5..2f9b3c5 100644 --- a/frontend/src/components/dashboard/IrisPanel.vue +++ b/frontend/src/components/dashboard/IrisPanel.vue @@ -18,8 +18,8 @@ const meters = computed(() => { return { openTasks: store.snapshot.metrics.queuedTasks, blocked: store.snapshot.metrics.incidents, - overdue: tasks.filter(t => t.state === 'Blocked').length, - todayAppointments: tasks.filter(t => t.state === 'In progress').length, + critical: tasks.filter(t => t.state === 'Blocked').length, + active: tasks.filter(t => t.state === 'In progress').length, } }) @@ -61,12 +61,12 @@ function sendChat() { Blockiert