diff --git a/jslib b/jslib index bc43c68eb9..a0a1142f1f 160000 --- a/jslib +++ b/jslib @@ -1 +1 @@ -Subproject commit bc43c68eb98799c8b9e30a1dd8f60431dc1236c6 +Subproject commit a0a1142f1f3152aea2abf3ca51feffa21e60e9a9 diff --git a/src/app/vault/ciphers.component.html b/src/app/vault/ciphers.component.html index 1154d7e357..a1413c495b 100644 --- a/src/app/vault/ciphers.component.html +++ b/src/app/vault/ciphers.component.html @@ -29,16 +29,18 @@ - \ No newline at end of file + diff --git a/src/app/vault/ciphers.component.ts b/src/app/vault/ciphers.component.ts index b36468365d..f870b8fb8f 100644 --- a/src/app/vault/ciphers.component.ts +++ b/src/app/vault/ciphers.component.ts @@ -19,7 +19,6 @@ import { CiphersComponent as BaseCiphersComponent } from 'jslib/angular/componen import { CipherType } from 'jslib/enums/cipherType'; import { CipherView } from 'jslib/models/view/cipherView'; -import { LoginView } from 'jslib/models/view/loginView'; const MaxCheckedCount = 500; @@ -51,13 +50,9 @@ export class CiphersComponent extends BaseCiphersComponent implements OnDestroy (c as any).checked = select == null ? !(c as any).checked : select; } - launch(view: LoginView) { - if (!view.canLaunch) { - return; - } - + launch(uri: string) { this.platformUtilsService.eventTrack('Launched Login URI'); - this.platformUtilsService.launchUri(view.launchUri); + this.platformUtilsService.launchUri(uri); } selectAll(select: boolean) {