Skip to content

Commit

Permalink
UIBULKED-555: Rearrange item statuses order
Browse files Browse the repository at this point in the history
  • Loading branch information
UladzislauKutarkin committed Oct 16, 2024
1 parent 94e4f4c commit c347a85
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@
* [UIBULKED-501](https://folio-org.atlassian.net/browse/UIBULKED-501) Downloading .mrc file from Confirmation form
* [UIBULKED-539](https://folio-org.atlassian.net/browse/UIBULKED-539) Handle validation cases for “In.1“, “In.2“, "Subfield" fields on Bulk edit MARC fields form.
* [UIBULKED-549](https://folio-org.atlassian.net/browse/UIBULKED-549) Add additional item status.
* [UIBULKED-555](https://folio-org.atlassian.net/browse/UIBULKED-555)Rearrange item statuses order.

## [4.1.4](https://github.com/folio-org/ui-bulk-edit/tree/v4.1.4) (2024-05-29)

Expand Down
14 changes: 7 additions & 7 deletions src/constants/selectOptions.js
Original file line number Diff line number Diff line change
Expand Up @@ -403,14 +403,19 @@ export const getItemStatusOptions = (formatMessage) => [
label: formatMessage({ id: 'ui-bulk-edit.layer.options.available' }),
disabled: false,
},
{
value: 'Missing',
label: formatMessage({ id: 'ui-bulk-edit.layer.options.missing' }),
disabled: false,
},
{
value: 'Withdrawn',
label: formatMessage({ id: 'ui-bulk-edit.layer.options.withdrawn' }),
disabled: false,
},
{
value: 'Missing',
label: formatMessage({ id: 'ui-bulk-edit.layer.options.missing' }),
value: 'IN_PROCESS',
label: formatMessage({ id: 'ui-bulk-edit.layer.options.inProcess' }),
disabled: false,
},
{
Expand Down Expand Up @@ -443,11 +448,6 @@ export const getItemStatusOptions = (formatMessage) => [
label: formatMessage({ id: 'ui-bulk-edit.layer.options.unknown' }),
disabled: false,
},
{
value: 'IN_PROCESS',
label: formatMessage({ id: 'ui-bulk-edit.layer.options.inProcess' }),
disabled: false,
}
];

export const EDIT_CAPABILITIES_OPTIONS = [
Expand Down

0 comments on commit c347a85

Please sign in to comment.