mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 16:53:34 +00:00
popout and refresh logic
This commit is contained in:
@@ -33,9 +33,9 @@ import { PopupUtilsService } from '../services/popup-utils.service';
|
||||
})
|
||||
export class CurrentTabComponent implements OnInit {
|
||||
pageDetails: any[] = [];
|
||||
cardCiphers: CipherView[] = [];
|
||||
identityCiphers: CipherView[] = [];
|
||||
loginCiphers: CipherView[] = [];
|
||||
cardCiphers: CipherView[];
|
||||
identityCiphers: CipherView[];
|
||||
loginCiphers: CipherView[];
|
||||
url: string;
|
||||
domain: string;
|
||||
canAutofill = false;
|
||||
@@ -127,6 +127,10 @@ export class CurrentTabComponent implements OnInit {
|
||||
CipherType.Identity,
|
||||
]);
|
||||
|
||||
this.loginCiphers = [];
|
||||
this.cardCiphers = [];
|
||||
this.identityCiphers = [];
|
||||
|
||||
ciphers.forEach((c) => {
|
||||
switch (c.type) {
|
||||
case CipherType.Login:
|
||||
|
||||
Reference in New Issue
Block a user