diff --git a/src/components/TasksList.vue b/src/components/TasksList.vue index 017b7ad631..7cb1f13cc0 100644 --- a/src/components/TasksList.vue +++ b/src/components/TasksList.vue @@ -93,7 +93,7 @@ export default { }, methods: { isBatchDownloadEncrypted(item) { - return item.name.includes('BatchDownload') && item.properties.batchDownload.encrypted + return item.name.includes('BatchDownload') && item.args.batchDownload.encrypted }, hasZipSize(item) { return item.name.includes('BatchDownload') && item.state !== 'ERROR' && item.result?.size !== undefined diff --git a/src/pages/TaskBatchDownloadList.vue b/src/pages/TaskBatchDownloadList.vue index 1f72079bbe..74271fc856 100644 --- a/src/pages/TaskBatchDownloadList.vue +++ b/src/pages/TaskBatchDownloadList.vue @@ -7,29 +7,29 @@ -