From 9567721456c8ea68601a730a3dc57dce2b44330d Mon Sep 17 00:00:00 2001 From: vashjs <86330150+vashjs@users.noreply.github.com> Date: Wed, 18 Oct 2023 13:15:41 +0100 Subject: [PATCH] UIBULKED-315 place holings locations alphabetically (#399) --- src/constants/selectOptions.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/constants/selectOptions.js b/src/constants/selectOptions.js index e2bbeed2..24c76c29 100644 --- a/src/constants/selectOptions.js +++ b/src/constants/selectOptions.js @@ -182,14 +182,14 @@ export const getHoldingsOptions = (formatMessage, holdingsNotes = []) => [ disabled: false, }, { - value: OPTIONS.TEMPORARY_HOLDINGS_LOCATION, - label: formatMessage({ id: 'ui-bulk-edit.layer.options.holdings.temporaryLocation' }), + value: OPTIONS.PERMANENT_HOLDINGS_LOCATION, + label: formatMessage({ id: 'ui-bulk-edit.layer.options.holdings.permanentLocation' }), disabled: false, categoryName: formatMessage({ id: 'ui-bulk-edit.category.holdingsLocation' }), }, { - value: OPTIONS.PERMANENT_HOLDINGS_LOCATION, - label: formatMessage({ id: 'ui-bulk-edit.layer.options.holdings.permanentLocation' }), + value: OPTIONS.TEMPORARY_HOLDINGS_LOCATION, + label: formatMessage({ id: 'ui-bulk-edit.layer.options.holdings.temporaryLocation' }), disabled: false, categoryName: formatMessage({ id: 'ui-bulk-edit.category.holdingsLocation' }), },