1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-14 23:33:31 +00:00

[SM-249] Adding detailed description of which secrets are unable to be deleted (#4849)

* Adding detailed description of which secrets are unable to be deleted

* removing accidental change

* removing Can write from Service Account options

* suggested PR changes

* thomas's suggested changes

* fixing merge conflicts after merging in master
This commit is contained in:
cd-bitwarden
2023-03-07 15:33:39 -05:00
committed by GitHub
parent 9d4d340930
commit 1d01bfbb61
10 changed files with 80 additions and 33 deletions

View File

@@ -66,10 +66,10 @@ export class SecretsComponent implements OnInit {
});
}
openDeleteSecret(secretIds: string[]) {
openDeleteSecret(event: SecretListView[]) {
this.dialogService.open<unknown, SecretDeleteOperation>(SecretDeleteDialogComponent, {
data: {
secretIds: secretIds,
secrets: event,
},
});
}