Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
* Place "Manage number generator options" capability checkbox in the `manage` column instead of `view`. Fixes UIIN-3665.
* Remove button "Generate accession and call numbers" at call number field and add an info popover instead. Refs UIIN-3680.
* Add number generator settings for Instance Identifier. Refs UIIN-3678.
* Move menu item "Number generator options" to Section Settings > Inventory > Instances, Holdings, Items. Refs UIIN-3677.

## [14.0.3](https://github.com/folio-org/ui-inventory/tree/v14.0.3) (2026-05-29)
[Full Changelog](https://github.com/folio-org/ui-inventory/compare/v14.0.2...v14.0.3)
Expand Down
12 changes: 6 additions & 6 deletions src/settings/InventorySettings/InventorySettings.js
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,12 @@ const InventorySettings = (props) => {
component: HRIDHandlingSettings,
perm: addPerm('ui-inventory.settings.hrid-handling'),
},
{
component: NumberGeneratorSettings,
label: <FormattedMessage id="ui-inventory.numberGenerator.options" />,
route: 'numberGeneratorOptions',
perm: 'ui-inventory.settings.number-generator-options.manage',
},
{
route: 'statisticalCodeTypes',
label: <FormattedMessage id="ui-inventory.statisticalCodeTypes" />,
Expand Down Expand Up @@ -297,12 +303,6 @@ const InventorySettings = (props) => {
component: CallNumberTypes,
perm: addPerm('ui-inventory.settings.call-number-types'),
},
{
component: NumberGeneratorSettings,
label: <FormattedMessage id="ui-inventory.numberGenerator.options" />,
route: 'numberGeneratorOptions',
perm: 'ui-inventory.settings.number-generator-options.manage',
},
]
},
];
Expand Down
Loading