From c9620a3f6f5eb50cc5eb5eacf5c8f1bd9fbc11d0 Mon Sep 17 00:00:00 2001 From: Dave Date: Tue, 3 Feb 2026 11:10:44 -0500 Subject: [PATCH] feature/IO-3544-Ant-Select-Deprecation - Fix filtering --- .../allocations-assignment.component.jsx | 4 ++-- .../allocations-bulk-assignment.component.jsx | 4 ++-- .../job-line-bulk-assign/job-line-bulk-assign.component.jsx | 4 ++-- .../job-line-dispatch-button.component.jsx | 4 ++-- .../production-list-columns.empassignment.component.jsx | 4 ++-- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/client/src/components/allocations-assignment/allocations-assignment.component.jsx b/client/src/components/allocations-assignment/allocations-assignment.component.jsx index 00ec8f90a..0f00cf159 100644 --- a/client/src/components/allocations-assignment/allocations-assignment.component.jsx +++ b/client/src/components/allocations-assignment/allocations-assignment.component.jsx @@ -29,8 +29,8 @@ export function AllocationsAssignmentComponent({ option.props.children.toLowerCase().indexOf(input.toLowerCase()) >= 0 + optionFilterProp: "label", + filterOption: (input, option) => option.label.toLowerCase().indexOf(input.toLowerCase()) >= 0 }} style={{ width: 200 }} placeholder="Select a person" diff --git a/client/src/components/job-line-bulk-assign/job-line-bulk-assign.component.jsx b/client/src/components/job-line-bulk-assign/job-line-bulk-assign.component.jsx index 7674d75c6..43ec0e8a8 100644 --- a/client/src/components/job-line-bulk-assign/job-line-bulk-assign.component.jsx +++ b/client/src/components/job-line-bulk-assign/job-line-bulk-assign.component.jsx @@ -88,8 +88,8 @@ export function JoblineBulkAssign({ setSelectedLines, selectedLines, insertAudit > option.props.children.toLowerCase().indexOf(input.toLowerCase()) >= 0 + optionFilterProp: "label", + filterOption: (input, option) => option.label.toLowerCase().indexOf(input.toLowerCase()) >= 0 }} style={{ width: 200 }} options={bodyshop.employees diff --git a/client/src/components/production-list-columns/production-list-columns.empassignment.component.jsx b/client/src/components/production-list-columns/production-list-columns.empassignment.component.jsx index c55db2942..c02f46fa6 100644 --- a/client/src/components/production-list-columns/production-list-columns.empassignment.component.jsx +++ b/client/src/components/production-list-columns/production-list-columns.empassignment.component.jsx @@ -111,8 +111,8 @@ export function ProductionListEmpAssignment({ insertAuditTrail, bodyshop, record