Przeglądaj źródła

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

ebagabee 2 tygodni temu
rodzic
commit
6a7b7a801d
1 zmienionych plików z 0 dodań i 1 usunięć
  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 ?? "—";
 });