We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5df5d11 commit 3fb47a3Copy full SHA for 3fb47a3
app/components/events/view/export/download-zip.js
@@ -8,7 +8,7 @@ export default class DownloadZip extends Component {
8
async exportEventDownload(eventDownloadUrl) {
9
this.set('isLoading', true);
10
try {
11
- const res = await this.loader.downloadFile(`${eventDownloadUrl}`);
+ const res = await this.loader.downloadFile(eventDownloadUrl, null, { isExternal: true });
12
const anchor = document.createElement('a');
13
anchor.style.display = 'none';
14
anchor.href = URL.createObjectURL(new Blob([res], { type: 'octet/stream' }));
0 commit comments