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

[PM-2270] Renamed Fido2Key.userName to Fido2Key.userDisplayName (#6005)

* Renamed fido2key property username to userDisplayName

* Renamed username property on fido2key object to userdisplayname

* updated username to userDisplayName in fido2 export
This commit is contained in:
SmithThe4th
2023-09-01 09:30:33 -04:00
committed by GitHub
parent 419737d293
commit afcd952de5
17 changed files with 52 additions and 49 deletions

View File

@@ -12,7 +12,7 @@ export class Fido2KeyData {
// Extras
rpName: string;
userName: string;
userDisplayName: string;
constructor(data?: Fido2KeyApi) {
if (data == null) {
@@ -28,6 +28,6 @@ export class Fido2KeyData {
this.userHandle = data.userHandle;
this.counter = data.counter;
this.rpName = data.rpName;
this.userName = data.userName;
this.userDisplayName = data.userDisplayName;
}
}