diff --git a/src/pages/Office/MoveQueue/MoveQueue.jsx b/src/pages/Office/MoveQueue/MoveQueue.jsx index bc156ffb44c..95b703189fc 100644 --- a/src/pages/Office/MoveQueue/MoveQueue.jsx +++ b/src/pages/Office/MoveQueue/MoveQueue.jsx @@ -178,6 +178,9 @@ export const columns = (moveLockFlag, isQueueManagementEnabled, showBranchFilter { id: 'assignedTo', isFilterable: true, + exportValue: (row) => { + return row.assignedTo ? `${row.assignedTo?.lastName}, ${row.assignedTo?.firstName}` : ''; + }, }, ), ); diff --git a/src/pages/Office/PaymentRequestQueue/PaymentRequestQueue.jsx b/src/pages/Office/PaymentRequestQueue/PaymentRequestQueue.jsx index 2edaeb880e5..a46518a2627 100644 --- a/src/pages/Office/PaymentRequestQueue/PaymentRequestQueue.jsx +++ b/src/pages/Office/PaymentRequestQueue/PaymentRequestQueue.jsx @@ -181,6 +181,9 @@ export const columns = (moveLockFlag, isQueueManagementEnabled, showBranchFilter { id: 'assignedTo', isFilterable: true, + exportValue: (row) => { + return row.assignedTo ? `${row.assignedTo?.lastName}, ${row.assignedTo?.firstName}` : ''; + }, }, ), ); diff --git a/src/pages/Office/ServicesCounselingQueue/ServicesCounselingQueue.jsx b/src/pages/Office/ServicesCounselingQueue/ServicesCounselingQueue.jsx index 977a9ebd9ba..44b11a5567d 100644 --- a/src/pages/Office/ServicesCounselingQueue/ServicesCounselingQueue.jsx +++ b/src/pages/Office/ServicesCounselingQueue/ServicesCounselingQueue.jsx @@ -221,6 +221,9 @@ export const counselingColumns = (moveLockFlag, originLocationList, supervisor, { id: 'assignedTo', isFilterable: true, + exportValue: (row) => { + return row.assignedTo ? `${row.assignedTo?.lastName}, ${row.assignedTo?.firstName}` : ''; + }, }, ), ); @@ -415,6 +418,9 @@ export const closeoutColumns = ( { id: 'assignedTo', isFilterable: true, + exportValue: (row) => { + return row.assignedTo ? `${row.assignedTo?.lastName}, ${row.assignedTo?.firstName}` : ''; + }, }, ), );