1
0
mirror of https://github.com/bitwarden/browser synced 2026-01-31 00:33:33 +00:00

send creation integrated with server and returns object containing emails

This commit is contained in:
John Harrington
2025-12-26 19:19:11 -07:00
parent 913a6ad666
commit e8794cf9af

View File

@@ -48,6 +48,12 @@ export class SendView implements View {
this.password = s.password;
this.hideEmail = s.hideEmail;
this.authType = s.authType;
this.emails = s.emails
? s.emails
.split(",")
.map((e) => e.trim())
.filter((e) => e)
: [];
}
get urlB64Key(): string {