Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion resources/js/angular/controllers/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ export function IndexController($scope, $rootScope, $location, $http, $filter, $
if(num_per_page_cookie) {
$scope.cdash.buildgroups[i].pagination.numPerPage = parseInt(num_per_page_cookie);
} else {
$scope.cdash.buildgroups[i].pagination.numPerPage = 10;
$scope.cdash.buildgroups[i].pagination.numPerPage = 50;
}

// Setup sorting.
Expand Down
2 changes: 1 addition & 1 deletion resources/js/angular/controllers/queryTests.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export function QueryTestsController($scope, $rootScope, $filter, apiLoader, fil
if(num_per_page_cookie) {
$scope.pagination.numPerPage = parseInt(num_per_page_cookie);
} else {
$scope.pagination.numPerPage = 25;
$scope.pagination.numPerPage = 50;
}

// Hide filters by default.
Expand Down
2 changes: 1 addition & 1 deletion resources/js/angular/controllers/testOverview.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export function TestOverviewController($scope, $rootScope, $filter, apiLoader, f
if(num_per_page_cookie) {
$scope.pagination.numPerPage = parseInt(num_per_page_cookie);
} else {
$scope.pagination.numPerPage = 10;
$scope.pagination.numPerPage = 50;
}

apiLoader.loadPageData($scope, 'api/v1/testOverview.php');
Expand Down
2 changes: 1 addition & 1 deletion tests/cypress/e2e/query-tests.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,6 @@ describe('query tests', () => {
// load the page and verify the expected number of tests.
cy.visit(expected_url);
cy.get('#numtests').should('contain', 'Query Tests: 126 matches');
cy.get('#queryTestsTable').find('tbody').find('tr').should('have.length', 25);
cy.get('#queryTestsTable').find('tbody').find('tr').should('have.length', 50);
});
});