mirror of
https://github.com/bitwarden/browser
synced 2025-12-28 22:23:28 +00:00
Fixed trailing comma lint warnings (#772)
* Fixed trailing comma lint warnings * Specified options on tslint comma rule
This commit is contained in:
@@ -41,7 +41,7 @@ export class ChangePasswordComponent extends BaseChangePasswordComponent {
|
||||
userService: UserService, passwordGenerationService: PasswordGenerationService,
|
||||
platformUtilsService: PlatformUtilsService, policyService: PolicyService,
|
||||
private folderService: FolderService, private cipherService: CipherService,
|
||||
private syncService: SyncService, private apiService: ApiService, ) {
|
||||
private syncService: SyncService, private apiService: ApiService ) {
|
||||
super(i18nService, cryptoService, messagingService, userService, passwordGenerationService,
|
||||
platformUtilsService, policyService);
|
||||
}
|
||||
|
||||
@@ -177,7 +177,7 @@ export class EmergencyAccessComponent implements OnInit {
|
||||
details.name || details.email,
|
||||
this.i18nService.t('requestAccess'),
|
||||
this.i18nService.t('no'),
|
||||
'warning'
|
||||
'warning',
|
||||
);
|
||||
|
||||
if (!confirmed) {
|
||||
@@ -198,7 +198,7 @@ export class EmergencyAccessComponent implements OnInit {
|
||||
details.name || details.email,
|
||||
this.i18nService.t('approve'),
|
||||
this.i18nService.t('no'),
|
||||
'warning'
|
||||
'warning',
|
||||
);
|
||||
|
||||
if (!confirmed) {
|
||||
|
||||
Reference in New Issue
Block a user