1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 08:13:42 +00:00

Added share functionality to cipher add-edit component (#758)

This commit is contained in:
Cory
2018-10-23 06:25:44 -07:00
committed by Kyle Spearrin
parent 22f887a81d
commit ce7930bcc4
7 changed files with 219 additions and 0 deletions

View File

@@ -83,6 +83,10 @@ export class AddEditComponent extends BaseAddEditComponent implements OnInit {
this.router.navigate(['/attachments'], { queryParams: { cipherId: this.cipher.id } });
}
share() {
this.router.navigate(['/share'], { queryParams: { cipherId: this.cipher.id } });
}
cancel() {
super.cancel();
this.location.back();