even small lists for edge
This commit is contained in:
parent
15792a1ae6
commit
57a0c0fc75
|
@ -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() {
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue