Skip to content

Commit

Permalink
Merge branch 'main' into B-22110-cicd-optimizations
Browse files Browse the repository at this point in the history
  • Loading branch information
josiahzimmerman-caci authored Jan 16, 2025
2 parents 90935d6 + 83994c4 commit 7c94d40
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/pages/Office/MoveQueue/MoveQueue.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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}` : '';
},
},
),
);
Expand Down
3 changes: 3 additions & 0 deletions src/pages/Office/PaymentRequestQueue/PaymentRequestQueue.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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}` : '';
},
},
),
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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}` : '';
},
},
),
);
Expand Down Expand Up @@ -415,6 +418,9 @@ export const closeoutColumns = (
{
id: 'assignedTo',
isFilterable: true,
exportValue: (row) => {
return row.assignedTo ? `${row.assignedTo?.lastName}, ${row.assignedTo?.firstName}` : '';
},
},
),
);
Expand Down

0 comments on commit 7c94d40

Please sign in to comment.