1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-19 01:33:33 +00:00

Allowed editing sends

This commit is contained in:
addison
2021-02-10 14:15:10 -05:00
parent 544ecbecdc
commit 12532f3cc4
5 changed files with 120 additions and 92 deletions

View File

@@ -72,6 +72,6 @@ export class SendComponent extends BaseSendComponent implements OnInit {
}
get selectedSendType() {
return this.sends.find(s => s.id === this.sendId).type;
return this.sends.find(s => s.id === this.sendId)?.type;
}
}