1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-06 00:13:28 +00:00

Fix filename not including "_encrypted_" when selecting encrypted vault exports (#14066)

Co-authored-by: Daniel James Smith <djsmith85@users.noreply.github.com>
This commit is contained in:
Daniel James Smith
2025-03-31 16:55:04 +02:00
committed by GitHub
parent 646c7198aa
commit 0311681803
2 changed files with 2 additions and 2 deletions

View File

@@ -250,7 +250,7 @@ export class IndividualVaultExportService
return {
type: "text/plain",
data: JSON.stringify(jsonDoc, null, " "),
fileName: ExportHelper.getFileName("", "json"),
fileName: ExportHelper.getFileName("", "encrypted_json"),
} as ExportedVaultAsString;
}

View File

@@ -109,7 +109,7 @@ export class OrganizationVaultExportService
data: onlyManagedCollections
? await this.getEncryptedManagedExport(organizationId)
: await this.getOrganizationEncryptedExport(organizationId),
fileName: ExportHelper.getFileName("org", "json"),
fileName: ExportHelper.getFileName("org", "encrypted_json"),
} as ExportedVaultAsString;
}