mirror of
https://github.com/bitwarden/browser
synced 2025-12-06 00:13:28 +00:00
exclude fido2crednetials when creating login item from template via CLI (#14766)
This commit is contained in:
@@ -15,7 +15,7 @@ export class LoginExport {
|
||||
req.username = "jdoe";
|
||||
req.password = "myp@ssword123";
|
||||
req.totp = "JBSWY3DPEHPK3PXP";
|
||||
req.fido2Credentials = [Fido2CredentialExport.template()];
|
||||
req.fido2Credentials = [];
|
||||
return req;
|
||||
}
|
||||
|
||||
@@ -48,7 +48,7 @@ export class LoginExport {
|
||||
username: string;
|
||||
password: string;
|
||||
totp: string;
|
||||
fido2Credentials: Fido2CredentialExport[] = [];
|
||||
fido2Credentials: Fido2CredentialExport[];
|
||||
|
||||
constructor(o?: LoginView | LoginDomain) {
|
||||
if (o == null) {
|
||||
|
||||
Reference in New Issue
Block a user