From 57a0c0fc756d319671b5eaca13dbf71dca949b57 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Fri, 13 Apr 2018 23:23:35 -0400 Subject: [PATCH] even small lists for edge --- src/popup/vault/ciphers.component.ts | 2 +- src/popup/vault/groupings.component.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/popup/vault/ciphers.component.ts b/src/popup/vault/ciphers.component.ts index e2b02e14c8..49ca604478 100644 --- a/src/popup/vault/ciphers.component.ts +++ b/src/popup/vault/ciphers.component.ts @@ -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() { diff --git a/src/popup/vault/groupings.component.ts b/src/popup/vault/groupings.component.ts index 1ca1b50b4c..74851f9a49 100644 --- a/src/popup/vault/groupings.component.ts +++ b/src/popup/vault/groupings.component.ts @@ -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 {