Răsfoiți Sursa

fix(kanban): simplify Para label — Interno or unit name only

ebagabee 2 săptămâni în urmă
părinte
comite
6a7b7a801d
1 a modificat fișierele cu 0 adăugiri și 1 ștergeri
  1. 0 1
      src/pages/kanban/components/KanbanCard.vue

+ 0 - 1
src/pages/kanban/components/KanbanCard.vue

@@ -73,7 +73,6 @@ const truncated = computed(() => {
 
 const paraLabel = computed(() => {
   if (card.scope === "internal") return "Interno";
-  if (card.scope === "all") return "Todas as Unidades";
   return card.target_unit_name ?? "—";
 });