diff --git a/src/components/BulkEditLogs/BulkEditLogsActions/BulkEditLogsActions.js b/src/components/BulkEditLogs/BulkEditLogsActions/BulkEditLogsActions.js index c04f7e5d..f088255a 100644 --- a/src/components/BulkEditLogs/BulkEditLogsActions/BulkEditLogsActions.js +++ b/src/components/BulkEditLogs/BulkEditLogsActions/BulkEditLogsActions.js @@ -21,7 +21,7 @@ import { useBulkPermissions } from '../../../hooks'; import { getFileName } from '../../../utils/getFileName'; const BulkEditLogsActions = ({ item }) => { - const fileNamePostfix = item.approach === APPROACHES.QUERY ? `.${item.approach}` : ''; + const fileNamePostfix = item.fqlQueryId ? `.${APPROACHES.QUERY}` : ''; const { hasUsersViewPerms, diff --git a/translations/ui-bulk-edit/en.json b/translations/ui-bulk-edit/en.json index 398e6305..1b00e020 100644 --- a/translations/ui-bulk-edit/en.json +++ b/translations/ui-bulk-edit/en.json @@ -393,6 +393,11 @@ "logs.actions.linkToCommittedRecordsCsvFile": "File with updated records", "logs.actions.linkToCommittedRecordsErrorsCsvFile": "File with errors encountered when committing the changes", "logs.actions.linkToTriggeringCsvFile.QUERY": "File with identifiers of the records affected by bulk update", + "logs.actions.linkToMatchedRecordsCsvFile.QUERY": "File with the matching records", + "logs.actions.linkToMatchedRecordsErrorsCsvFile.QUERY": "File with errors encountered during the record matching", + "logs.actions.linkToModifiedRecordsCsvFile.QUERY": "File with the preview of proposed changes", + "logs.actions.linkToCommittedRecordsCsvFile.QUERY": "File with updated records", + "logs.actions.linkToCommittedRecordsErrorsCsvFile.QUERY": "File with errors encountered when committing the changes", "logs.filter.title.status": "Statuses", "logs.filter.title.capability": "Record types", "logs.filter.title.types": "Bulk operation type",