@inveniosoftware/react-invenio-app-ils 1.0.0-alpha.66 → 1.0.0-alpha.67
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGES.md +4 -0
- package/dist/cjs/index.js +2 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +2 -2
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGES.md
CHANGED
package/dist/cjs/index.js
CHANGED
|
@@ -56940,11 +56940,11 @@ function _get(target, property, receiver) {
|
|
|
56940
56940
|
var qsBuilderForSeries = function qsBuilderForSeries(seriesMetadata) {
|
|
56941
56941
|
var pidValue = seriesMetadata.pid; // MM can have has children only documents
|
|
56942
56942
|
|
|
56943
|
-
var relationsQuery = "relations.multipart_monograph.pid_value
|
|
56943
|
+
var relationsQuery = "relations.multipart_monograph.pid_value:\"".concat(pidValue, "\"");
|
|
56944
56944
|
|
|
56945
56945
|
if (seriesMetadata.mode_of_issuance === 'SERIAL') {
|
|
56946
56946
|
// serials can have as children serials or MM
|
|
56947
|
-
relationsQuery = "(relations.serial.pid_value
|
|
56947
|
+
relationsQuery = "(relations.serial.pid_value:\"".concat(pidValue, "\" OR ").concat(relationsQuery, ")");
|
|
56948
56948
|
}
|
|
56949
56949
|
/**
|
|
56950
56950
|
* Custom serializer to change the query string and retrieve all records that have
|