diff --git a/.changeset/modern-bananas-count.md b/.changeset/modern-bananas-count.md new file mode 100644 index 0000000000..5c80c33aa1 --- /dev/null +++ b/.changeset/modern-bananas-count.md @@ -0,0 +1,5 @@ +--- +'@directus/app': patch +--- + +Fixed issue that could cause the export drawer to hang on export diff --git a/app/src/views/private/components/export-sidebar-detail.vue b/app/src/views/private/components/export-sidebar-detail.vue index 4ac36d402c..5ae497accb 100644 --- a/app/src/views/private/components/export-sidebar-detail.vue +++ b/app/src/views/private/components/export-sidebar-detail.vue @@ -137,51 +137,45 @@
-

- - - - - +

+ {{ t('loading') }} +

+

+ {{ t('exporting_no_items_to_export') }} +

+

+ {{ + t('exporting_all_items_in_collection', { + total: itemCount ? n(itemCount) : '??', + collection: collectionInfo?.name, + }) + }}

-

- +

+ {{ + t('exporting_limited_items_in_collection', { + limit: exportSettings.limit ? n(exportSettings.limit) : '??', + total: itemCount ? n(itemCount) : '??', + collection: collectionInfo?.name, + }) + }} +

- +

+ {{ t('exporting_batch_hint_forced', { format: t(format) }) }} +

- +

+ {{ t('exporting_batch_hint', { format: t(format) }) }} +

+ +

+ {{ t('exporting_download_hint', { format: t(format) }) }}