mirror of
https://github.com/bitwarden/browser
synced 2025-12-18 01:03:35 +00:00
[deps] Autofill: Update prettier to v3 (#7014)
* [deps] Autofill: Update prettier to v3 * prettier formatting updates --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Jonathan Prusik <jprusik@classynemesis.com>
This commit is contained in:
@@ -47,7 +47,7 @@ export class AddEditComponent extends BaseAddEditComponent implements OnInit, On
|
||||
const dateCreated = this.i18nService.t("dateCreated");
|
||||
const creationDate = this.datePipe.transform(
|
||||
this.cipher?.login?.fido2Credentials?.[0]?.creationDate,
|
||||
"short"
|
||||
"short",
|
||||
);
|
||||
return `${dateCreated} ${creationDate}`;
|
||||
}
|
||||
@@ -70,7 +70,7 @@ export class AddEditComponent extends BaseAddEditComponent implements OnInit, On
|
||||
passwordRepromptService: PasswordRepromptService,
|
||||
sendApiService: SendApiService,
|
||||
dialogService: DialogService,
|
||||
private datePipe: DatePipe
|
||||
private datePipe: DatePipe,
|
||||
) {
|
||||
super(
|
||||
cipherService,
|
||||
@@ -87,7 +87,7 @@ export class AddEditComponent extends BaseAddEditComponent implements OnInit, On
|
||||
passwordRepromptService,
|
||||
organizationService,
|
||||
sendApiService,
|
||||
dialogService
|
||||
dialogService,
|
||||
);
|
||||
}
|
||||
|
||||
@@ -137,7 +137,7 @@ export class AddEditComponent extends BaseAddEditComponent implements OnInit, On
|
||||
if (this.editMode && this.showPasswordCount) {
|
||||
this.eventCollectionService.collect(
|
||||
EventType.Cipher_ClientToggledPasswordVisible,
|
||||
this.cipherId
|
||||
this.cipherId,
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -159,7 +159,7 @@ export class AddEditComponent extends BaseAddEditComponent implements OnInit, On
|
||||
this.platformUtilsService.showToast(
|
||||
"info",
|
||||
null,
|
||||
this.i18nService.t("valueCopied", this.i18nService.t(typeI18nKey))
|
||||
this.i18nService.t("valueCopied", this.i18nService.t(typeI18nKey)),
|
||||
);
|
||||
|
||||
if (this.editMode) {
|
||||
@@ -170,7 +170,7 @@ export class AddEditComponent extends BaseAddEditComponent implements OnInit, On
|
||||
} else if (aType === "H_Field") {
|
||||
this.eventCollectionService.collect(
|
||||
EventType.Cipher_ClientCopiedHiddenField,
|
||||
this.cipherId
|
||||
this.cipherId,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user