Sfoglia il codice sorgente

update

tags/Baseline_30082024_FRONTEND_UAT
cyril.tsui 1 anno fa
parent
commit
3ef46f7656
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. +1
    -1
      src/components/CreateProject/StaffAllocation.tsx

+ 1
- 1
src/components/CreateProject/StaffAllocation.tsx Vedi File

@@ -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";


Caricamento…
Annulla
Salva