From ad6394783d8777bc43f59a980fa9cf42c68a17bd Mon Sep 17 00:00:00 2001 From: Patrick Fic <> Date: Mon, 18 Oct 2021 11:22:01 -0700 Subject: [PATCH] IO-1443 Expand Priority selection to 15. --- .../production-list-columns.bodypriority.component.jsx | 2 +- .../production-list-columns.detailpriority.component.jsx | 2 +- .../production-list-columns.paintpriority.component.jsx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/client/src/components/production-list-columns/production-list-columns.bodypriority.component.jsx b/client/src/components/production-list-columns/production-list-columns.bodypriority.component.jsx index e4bebd596..7c926ba71 100644 --- a/client/src/components/production-list-columns/production-list-columns.bodypriority.component.jsx +++ b/client/src/components/production-list-columns/production-list-columns.bodypriority.component.jsx @@ -40,7 +40,7 @@ export default function ProductionListColumnBodyPriority({ record }) { key="set" title={t("production.actions.bodypriority-set")} > - {new Array(9).fill().map((value, index) => ( + {new Array(15).fill().map((value, index) => ( {index + 1} ))} diff --git a/client/src/components/production-list-columns/production-list-columns.detailpriority.component.jsx b/client/src/components/production-list-columns/production-list-columns.detailpriority.component.jsx index b06121f4b..2ead3ab4d 100644 --- a/client/src/components/production-list-columns/production-list-columns.detailpriority.component.jsx +++ b/client/src/components/production-list-columns/production-list-columns.detailpriority.component.jsx @@ -40,7 +40,7 @@ export default function ProductionListColumnDetailPriority({ record }) { key="set" title={t("production.actions.detailpriority-set")} > - {new Array(9).fill().map((value, index) => ( + {new Array(15).fill().map((value, index) => ( {index + 1} ))} diff --git a/client/src/components/production-list-columns/production-list-columns.paintpriority.component.jsx b/client/src/components/production-list-columns/production-list-columns.paintpriority.component.jsx index 25c50cde9..f119a6665 100644 --- a/client/src/components/production-list-columns/production-list-columns.paintpriority.component.jsx +++ b/client/src/components/production-list-columns/production-list-columns.paintpriority.component.jsx @@ -40,7 +40,7 @@ export default function ProductionListColumnPaintPriority({ record }) { key="set" title={t("production.actions.paintpriority-set")} > - {new Array(9).fill().map((value, index) => ( + {new Array(15).fill().map((value, index) => ( {index + 1} ))}