1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 08:13:42 +00:00

Add ConsoleLogService dependency from jslib (#735)

* Pre-emptively add new jslib dependency

* Add consoleLogService dependency definition

* Update jslib

* PR Review

Co-authored-by: Matt Gibson <mdgibson@Matts-MBP.lan>
This commit is contained in:
Matt Gibson
2020-12-14 12:27:32 -06:00
committed by GitHub
parent ec2b048289
commit 1464e0fbe8
6 changed files with 18 additions and 9 deletions

View File

@@ -10,7 +10,7 @@ export class HtmlStorageService implements StorageService {
ConstantsService.ssoStateKey, 'ssoOrgIdentifier']);
private localStorageStartsWithKeys = ['twoFactorToken_', ConstantsService.collapsedGroupingsKey + '_'];
private memoryStorageStartsWithKeys = ['ciphers_', 'folders_', 'collections_', 'settings_', 'lastSync_'];
private memoryStorage = new Map<string, string>()
private memoryStorage = new Map<string, string>();
constructor(private platformUtilsService: PlatformUtilsService) { }