Skip to content

Commit

Permalink
Add flags column to IAO advanced search
Browse files Browse the repository at this point in the history
  • Loading branch information
milosdes committed Dec 6, 2023
1 parent c8cf374 commit 0df3d46
Showing 1 changed file with 20 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ import {
getReceivedDate,
// onBehalfFullName,
getRecordsDue,
LightTooltip,
LightTooltip,
displayQueueFlagIcons,
} from "../../utils";
import { ActionContext } from "./ActionContext";
import {
Expand Down Expand Up @@ -97,6 +98,12 @@ const DataGridAdvancedSearch = ({ userDetail }) => {


const ProcessingTeamColumns = [
{
field: "flags",
headerName: "FLAGS",
headerAlign: "left",
renderCell: displayQueueFlagIcons,
},
{
field: "axisRequestId",
headerName: "ID NUMBER",
Expand Down Expand Up @@ -189,6 +196,12 @@ const DataGridAdvancedSearch = ({ userDetail }) => {
];

const IntakeTeamColumns = [
{
field: "flags",
headerName: "FLAGS",
headerAlign: "left",
renderCell: displayQueueFlagIcons,
},
{
field: "applicantName",
headerName: "APPLICANT NAME",
Expand Down Expand Up @@ -250,6 +263,12 @@ const DataGridAdvancedSearch = ({ userDetail }) => {
];

const FlexTeamColumns = [
{
field: "flags",
headerName: "FLAGS",
headerAlign: "left",
renderCell: displayQueueFlagIcons,
},
{
field: "axisRequestId",
headerName: "ID NUMBER",
Expand Down

0 comments on commit 0df3d46

Please sign in to comment.