mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 00:33:44 +00:00
Show grantee email in modal if name is null (#831)
This commit is contained in:
@@ -197,7 +197,7 @@ export class EmergencyAccessComponent implements OnInit {
|
|||||||
const type = this.i18nService.t(details.type === EmergencyAccessType.View ? 'view' : 'takeover');
|
const type = this.i18nService.t(details.type === EmergencyAccessType.View ? 'view' : 'takeover');
|
||||||
|
|
||||||
const confirmed = await this.platformUtilsService.showDialog(
|
const confirmed = await this.platformUtilsService.showDialog(
|
||||||
this.i18nService.t('approveAccessConfirmation', details.name, type),
|
this.i18nService.t('approveAccessConfirmation', details.name || details.email, type),
|
||||||
details.name || details.email,
|
details.name || details.email,
|
||||||
this.i18nService.t('approve'),
|
this.i18nService.t('approve'),
|
||||||
this.i18nService.t('no'),
|
this.i18nService.t('no'),
|
||||||
|
|||||||
Reference in New Issue
Block a user