Procházet zdrojové kódy

update

tags/Baseline_30082024_FRONTEND_UAT
cyril.tsui před 1 rokem
rodič
revize
3ef46f7656
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      src/components/CreateProject/StaffAllocation.tsx

+ 1
- 1
src/components/CreateProject/StaffAllocation.tsx Zobrazit soubor

@@ -173,7 +173,7 @@ const StaffAllocation: React.FC<Props> = ({
return (
(staff.name.toLowerCase().includes(q) ||
staff.id.toString().includes(q) ||
staff.currentPosition.toLowerCase().includes(q)) &&
staff.currentPosition?.toLowerCase().includes(q)) &&
Object.entries(filters).every(([filterKey, filterValue]) => {
const staffColumnValue = staff[filterKey as keyof StaffResult];
return staffColumnValue === filterValue || filterValue === "All";


Načítá se…
Zrušit
Uložit