mirror of
https://github.com/bitwarden/browser
synced 2025-12-15 07:43:35 +00:00
launch uri adjustments
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user