1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 16:53:34 +00:00

100 per page

This commit is contained in:
Kyle Spearrin
2019-05-13 08:53:26 -04:00
parent db43e247b9
commit 57e73dbfac
2 changed files with 2 additions and 2 deletions

View File

@@ -64,7 +64,7 @@ export class CiphersComponent extends BaseCiphersComponent implements OnInit, On
private folderService: FolderService, private collectionService: CollectionService,
private analytics: Angulartics2, private platformUtilsService: PlatformUtilsService) {
super(searchService);
this.pageSize = platformUtilsService.isEdge() ? 25 : 10;
this.pageSize = platformUtilsService.isEdge() ? 25 : 100;
this.applySavedState = (window as any).previousPopupUrl != null &&
!(window as any).previousPopupUrl.startsWith('/ciphers');
}