1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-14 15:23:33 +00:00

adjust deps on folder service

This commit is contained in:
Kyle Spearrin
2018-06-25 15:03:57 -04:00
parent 6fbcfcad7b
commit e78b2880e0
3 changed files with 6 additions and 3 deletions

2
jslib

Submodule jslib updated: d75543e6c8...1aa774b99f

View File

@@ -88,8 +88,8 @@ export class Main {
this.settingsService = new SettingsService(this.userService, this.storageService);
this.cipherService = new CipherService(this.cryptoService, this.userService, this.settingsService,
this.apiService, this.storageService, this.i18nService, this.platformUtilsService);
this.folderService = new FolderService(this.cryptoService, this.userService,
() => 'No Folder', this.apiService, this.storageService, this.i18nService);
this.folderService = new FolderService(this.cryptoService, this.userService, this.apiService,
this.storageService, this.i18nService, this.cipherService);
this.collectionService = new CollectionService(this.cryptoService, this.userService, this.storageService,
this.i18nService);
this.lockService = new LockService(this.cipherService, this.folderService, this.collectionService,

View File

@@ -10,5 +10,8 @@
},
"emailTitle": {
"message": "Email"
},
"noneFolder": {
"message": "No Folder"
}
}