diff --git a/apps/browser/src/_locales/en/messages.json b/apps/browser/src/_locales/en/messages.json index 4b15ef44e8a5..507bdc63257a 100644 --- a/apps/browser/src/_locales/en/messages.json +++ b/apps/browser/src/_locales/en/messages.json @@ -2425,15 +2425,9 @@ "application": { "message": "Application" }, - "passkeyEditInformation": { - "message": "You cannot edit passkey application because it would invalidate the passkey." - }, "duplicatePasskey": { "message": "A passkey with this ID already exists in this organization." }, - "passkeyTwoStepLogin": { - "message": "Available for two-step login" - }, "passkeyNotCopied": { "message": "Passkey will not be copied" }, diff --git a/apps/browser/src/vault/popup/components/action-buttons.component.html b/apps/browser/src/vault/popup/components/action-buttons.component.html index c1afffd508cd..f63c1f1ac325 100644 --- a/apps/browser/src/vault/popup/components/action-buttons.component.html +++ b/apps/browser/src/vault/popup/components/action-buttons.component.html @@ -100,41 +100,3 @@ - - - - - diff --git a/apps/browser/src/vault/popup/components/vault/add-edit.component.html b/apps/browser/src/vault/popup/components/vault/add-edit.component.html index 7b4b12044799..b337d4e47b5a 100644 --- a/apps/browser/src/vault/popup/components/vault/add-edit.component.html +++ b/apps/browser/src/vault/popup/components/vault/add-edit.component.html @@ -21,9 +21,6 @@

{{ "itemInformation" | i18n }}

-
@@ -138,7 +135,8 @@

{{ "typePasskey" | i18n }} - {{ "passkeyTwoStepLogin" | i18n }} + {{ "dateCreated" | i18n }} + {{ cipher.login.fido2Keys[0].creationDate | date : "short" }}

@@ -475,39 +473,6 @@

/>

- -
-
- - -
-
- {{ "typePasskey" | i18n }} - {{ "dateCreated" | i18n }} {{ cipher.creationDate | date : "short" }} -
- -
-
-
- - -
-
-
-
diff --git a/apps/browser/src/vault/popup/components/vault/vault-filter.component.html b/apps/browser/src/vault/popup/components/vault/vault-filter.component.html index 2065181ba253..564cf19f2c4a 100644 --- a/apps/browser/src/vault/popup/components/vault/vault-filter.component.html +++ b/apps/browser/src/vault/popup/components/vault/vault-filter.component.html @@ -70,9 +70,9 @@

{{ "typeLogin" | i18n }}

- {{ - getTypeCountsSum(typeCounts, cipherType.Login, cipherType.Fido2Key) - }} + + {{ typeCounts.get(cipherType.Login) || 0 }} + - - - - - -
@@ -619,8 +569,7 @@

*ngIf=" cipher.type !== cipherType.SecureNote && !cipher.isDeleted && - (!this.inPopout || this.loadAction) && - cipher.type != cipherType.Fido2Key + (!this.inPopout || this.loadAction) " >
@@ -649,7 +598,7 @@

class="box-content-row" appStopClick (click)="clone()" - *ngIf="!cipher.organizationId && !cipher.isDeleted && cipher.type != cipherType.Fido2Key" + *ngIf="!cipher.organizationId && !cipher.isDeleted" >
@@ -458,24 +459,6 @@

/>

- -
-
- - -
-
- {{ "typePasskey" | i18n }} - {{ "dateCreated" | i18n }} {{ cipher.creationDate | date : "short" }} -
-

@@ -556,24 +539,6 @@

- -
-
-
- - -
-
- -
diff --git a/apps/desktop/src/vault/app/vault/vault.component.ts b/apps/desktop/src/vault/app/vault/vault.component.ts index 08a97a15a617..194cee098f7f 100644 --- a/apps/desktop/src/vault/app/vault/vault.component.ts +++ b/apps/desktop/src/vault/app/vault/vault.component.ts @@ -286,7 +286,7 @@ export class VaultComponent implements OnInit, OnDestroy { this.editCipher(cipher); }), }); - if (!cipher.organizationId && !cipher.fido2Key?.rpId) { + if (!cipher.organizationId) { menu.push({ label: this.i18nService.t("clone"), click: () => @@ -357,14 +357,6 @@ export class VaultComponent implements OnInit, OnDestroy { }); } break; - case CipherType.Fido2Key: - if (cipher.fido2Key.canLaunch) { - menu.push({ - label: this.i18nService.t("launch"), - click: () => this.platformUtilsService.launchUri(cipher.fido2Key.launchUri), - }); - } - break; default: break; } diff --git a/apps/desktop/src/vault/app/vault/view.component.html b/apps/desktop/src/vault/app/vault/view.component.html index ad953246aa03..80fcdfff7d6b 100644 --- a/apps/desktop/src/vault/app/vault/view.component.html +++ b/apps/desktop/src/vault/app/vault/view.component.html @@ -121,7 +121,7 @@

{{ "typePasskey" | i18n }} - {{ "passkeyTwoStepLogin" | i18n }} + {{ "dateCreated" | i18n }} {{ cipher.login.fido2Keys[0].creationDate | date : "short" }}
{{ cipher.identity.country }}

- -
-
-
- {{ "username" | i18n }} - {{ cipher.fido2Key.userDisplayName }} -
-
-
- {{ "typePasskey" | i18n }} - {{ "dateCreated" | i18n }} {{ cipher.creationDate | date : "short" }} -
-
@@ -483,43 +470,6 @@

{{ cipher.notes }}

-
-
-
-
- - - - -
-
- - -
-
-
-
- - - - -
- -
- -
-
- - -
-
- -
- -
- - -
-
- {{ "passkeyEditInformation" | i18n }} -
-
-