1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 00:03:56 +00:00

update groupings deps

This commit is contained in:
Kyle Spearrin
2018-11-09 22:35:00 -05:00
parent 13df21577c
commit c1a3025bdf
3 changed files with 10 additions and 1 deletions

View File

@@ -27,7 +27,9 @@ import { FolderService } from 'jslib/abstractions/folder.service';
import { PlatformUtilsService } from 'jslib/abstractions/platformUtils.service';
import { SearchService } from 'jslib/abstractions/search.service';
import { StateService } from 'jslib/abstractions/state.service';
import { StorageService } from 'jslib/abstractions/storage.service';
import { SyncService } from 'jslib/abstractions/sync.service';
import { UserService } from 'jslib/abstractions/user.service';
import { BroadcasterService } from 'jslib/angular/services/broadcaster.service';
@@ -65,6 +67,7 @@ export class GroupingsComponent extends BaseGroupingsComponent implements OnInit
private allCiphers: CipherView[] = null;
constructor(collectionService: CollectionService, folderService: FolderService,
storageService: StorageService, userService: UserService,
private cipherService: CipherService, private router: Router,
private ngZone: NgZone, private broadcasterService: BroadcasterService,
private changeDetectorRef: ChangeDetectorRef, private route: ActivatedRoute,
@@ -72,7 +75,7 @@ export class GroupingsComponent extends BaseGroupingsComponent implements OnInit
private syncService: SyncService, private analytics: Angulartics2,
private platformUtilsService: PlatformUtilsService, private searchService: SearchService,
private location: Location) {
super(collectionService, folderService);
super(collectionService, folderService, storageService, userService);
this.noFolderListSize = platformUtilsService.isEdge() ? 25 : 100;
}