From 45d0cc1f5feebe48478ee5bcbe67204ea33dcac8 Mon Sep 17 00:00:00 2001 From: Patrick Fic <> Date: Tue, 18 May 2021 14:51:12 -0700 Subject: [PATCH] IO-1101 Show PAP in line filtering. --- .../src/components/job-detail-lines/job-lines.component.jsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/client/src/components/job-detail-lines/job-lines.component.jsx b/client/src/components/job-detail-lines/job-lines.component.jsx index b014afd7c..b6a179e52 100644 --- a/client/src/components/job-detail-lines/job-lines.component.jsx +++ b/client/src/components/job-detail-lines/job-lines.component.jsx @@ -105,7 +105,7 @@ export function JobLinesComponent({ state.sortedInfo.columnKey === "op_code_desc" && state.sortedInfo.order, ellipsis: true, render: (text, record) => - `${record.op_code_desc||""}${ + `${record.op_code_desc || ""}${ record.alt_partm ? ` ${record.alt_partm}` : "" }`, }, @@ -120,11 +120,11 @@ export function JobLinesComponent({ filters: [ { text: t("jobs.labels.partsfilter"), - value: ["PAN", "PAL", "PAA", "PAS", "PASL"], + value: ["PAN", "PAP", "PAL", "PAA", "PAS", "PASL"], }, { text: t("joblines.fields.part_types.PAN"), - value: ["PAN"], + value: ["PAN", "PAP"], }, { text: t("joblines.fields.part_types.PAL"),