diff --git a/CHANGELOG.md b/CHANGELOG.md index 26806214..d9f66c1a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ # Change history for ui-bulk-edit ## In progress +* [UIBULKED-465](https://issues.folio.org/browse/UIBULKED-465) Local approach - Incorrect numbers of changed records and errors are displayed on Confirmation screen ## [4.1.0](https://github.com/folio-org/ui-bulk-edit/tree/v4.1.0) (2024-03-19) diff --git a/src/components/BulkEditPane/BulkEditListResult/PreviewContainer/PreviewContainer.js b/src/components/BulkEditPane/BulkEditListResult/PreviewContainer/PreviewContainer.js index 7c76d1cf..06f6e041 100644 --- a/src/components/BulkEditPane/BulkEditListResult/PreviewContainer/PreviewContainer.js +++ b/src/components/BulkEditPane/BulkEditListResult/PreviewContainer/PreviewContainer.js @@ -30,7 +30,7 @@ const PreviewContainer = () => { } = useSearchParams(); const lowerCaseRecordType = currentRecordType?.toLowerCase(); - const { bulkDetails, isLoading } = useBulkOperationDetails({ id, additionalQueryKeys: [step] }); + const { bulkDetails, isLoading } = useBulkOperationDetails({ id, additionalQueryKeys: [step, progress] }); const title = useMemo(() => { if (bulkDetails?.userFriendlyQuery) return intl.formatMessage({ id: 'ui-bulk-edit.preview.query.title' }, { queryText: bulkDetails.userFriendlyQuery });