diff --git a/apps/web/src/app/organizations/tools/import-export/org-export.component.ts b/apps/web/src/app/organizations/tools/import-export/org-export.component.ts index 20b6690acd..626b3ef2bc 100644 --- a/apps/web/src/app/organizations/tools/import-export/org-export.component.ts +++ b/apps/web/src/app/organizations/tools/import-export/org-export.component.ts @@ -64,7 +64,11 @@ export class OrganizationExportComponent extends ExportComponent { } getExportData() { - return this.exportService.getOrganizationExport(this.organizationId, this.format); + if (this.isFileEncryptedExport) { + return this.exportService.getPasswordProtectedExport(this.filePassword, this.organizationId); + } else { + return this.exportService.getOrganizationExport(this.organizationId, this.format); + } } getFileName() {