even small lists for edge

This commit is contained in:
Kyle Spearrin 2018-04-13 23:23:35 -04:00
parent 15792a1ae6
commit 57a0c0fc75
2 changed files with 2 additions and 2 deletions

View File

@ -60,7 +60,7 @@ export class CiphersComponent extends BaseCiphersComponent implements OnInit, On
private folderService: FolderService, private collectionService: CollectionService,
private analytics: Angulartics2, private platformUtilsService: PlatformUtilsService) {
super(cipherService);
this.pageSize = platformUtilsService.isEdge() ? 50 : 100;
this.pageSize = platformUtilsService.isEdge() ? 40 : 100;
}
async ngOnInit() {

View File

@ -64,7 +64,7 @@ export class GroupingsComponent extends BaseGroupingsComponent implements OnInit
private syncService: SyncService, private analytics: Angulartics2,
private platformUtilsService: PlatformUtilsService) {
super(collectionService, folderService);
this.noFolderListSize = platformUtilsService.isEdge() ? 50 : 100;
this.noFolderListSize = platformUtilsService.isEdge() ? 40 : 100;
}
get showNoFolderCiphers(): boolean {