소스 검색

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

ebagabee 2 주 전
부모
커밋
6a7b7a801d
1개의 변경된 파일0개의 추가작업 그리고 1개의 파일을 삭제
  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 ?? "—";
 });