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 @@ -12,6 +12,7 @@
* Display loan type on the Request Detail page, as well as New Request page. Refs UIREQ-1328.
* When creating or viewing a request, show whether the a loan on the item would be use-at-location. Fixes UIREQ-1327.
* Added global permissions for get read-access to values such as tenant’s locale, timezone, and currency. Refs UIREQ-1341.
* Migrate tag flag from mod-configuration to mod-settings. Refs UIREQ-1344.

## [12.0.4] (https://github.com/folio-org/ui-requests/tree/v12.0.4) (2025-10-29)
[Full Changelog](https://github.com/folio-org/ui-requests/compare/v12.0.3...v12.0.4)
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@
"circulation.requests.hold-shelf-clearance-report.get",
"circulation.settings.collection.get",
"tlr.settings.get",
"mod-settings.global.read.ui-tags.tags.manage",
"mod-settings.global.read.circulation",
"mod-settings.entries.collection.get",
"mod-settings.entries.item.get",
Expand Down
4 changes: 4 additions & 0 deletions src/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -427,6 +427,10 @@ export const SETTINGS_SCOPES = {
CIRCULATION: 'circulation',
};

export const TAGS_SCOPES = {
TAG: 'ui-tags.tags.manage',
};

export const SETTINGS_KEYS = {
GENERAL_TLR: 'generalTlr',
};
Expand Down
2 changes: 2 additions & 0 deletions src/deprecated/routes/RequestsRoute/RequestsRoute.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ import {
INPUT_REQUEST_SEARCH_SELECTOR,
PRINT_DETAILS_COLUMNS,
requestFilterTypes,
TAGS_SCOPES,
} from '../../../constants';
import {
buildUrl,
Expand Down Expand Up @@ -1720,6 +1721,7 @@ class RequestsRoute extends React.Component {
parentResources={resources}
parentMutator={mutator}
detailProps={{
tagsScope: TAGS_SCOPES.TAG,
onChangePatron: this.onChangePatron,
stripes,
history,
Expand Down
2 changes: 2 additions & 0 deletions src/routes/RequestsRoute.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ import {
RESOURCE_TYPES,
requestFilterTypes,
PROXY_COLUMNS,
TAGS_SCOPES,
} from '../constants';
import {
buildUrl,
Expand Down Expand Up @@ -1794,6 +1795,7 @@ class RequestsRoute extends React.Component {
parentResources={resources}
parentMutator={mutator}
detailProps={{
tagsScope: TAGS_SCOPES.TAG,
onChangePatron: this.onChangePatron,
stripes,
history,
Expand Down