فهرست منبع

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 ?? "—";
 });