소스 검색

update

tags/Baseline_30082024_FRONTEND_UAT
cyril.tsui 1 년 전
부모
커밋
3ef46f7656
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      src/components/CreateProject/StaffAllocation.tsx

+ 1
- 1
src/components/CreateProject/StaffAllocation.tsx 파일 보기

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


불러오는 중...
취소
저장