Skip to content

Commit 3fb47a3

Browse files
fix: Zip export download link not working (#6012)
Co-authored-by: Areeb Jamal <[email protected]>
1 parent 5df5d11 commit 3fb47a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/components/events/view/export/download-zip.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export default class DownloadZip extends Component {
88
async exportEventDownload(eventDownloadUrl) {
99
this.set('isLoading', true);
1010
try {
11-
const res = await this.loader.downloadFile(`${eventDownloadUrl}`);
11+
const res = await this.loader.downloadFile(eventDownloadUrl, null, { isExternal: true });
1212
const anchor = document.createElement('a');
1313
anchor.style.display = 'none';
1414
anchor.href = URL.createObjectURL(new Blob([res], { type: 'octet/stream' }));

0 commit comments

Comments
 (0)