From b8b6803d6d994a489b6df9809787b03073418758 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Tue, 17 Apr 2018 13:06:57 -0400 Subject: [PATCH] reduce edge pages even more --- 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 49ca604478..95b7d4a0c6 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() ? 40 : 100; + this.pageSize = platformUtilsService.isEdge() ? 25 : 100; } async ngOnInit() { diff --git a/src/popup/vault/groupings.component.ts b/src/popup/vault/groupings.component.ts index 0fc02d7541..77de2dc993 100644 --- a/src/popup/vault/groupings.component.ts +++ b/src/popup/vault/groupings.component.ts @@ -65,7 +65,7 @@ export class GroupingsComponent extends BaseGroupingsComponent implements OnInit private syncService: SyncService, private analytics: Angulartics2, private platformUtilsService: PlatformUtilsService) { super(collectionService, folderService); - this.noFolderListSize = platformUtilsService.isEdge() ? 40 : 100; + this.noFolderListSize = platformUtilsService.isEdge() ? 25 : 100; } get showNoFolderCiphers(): boolean {