gitlab-org--gitlab-foss/app/assets/javascripts/jobs/components/table/constants.js

10 lines
185 B
JavaScript
Raw Normal View History

export const GRAPHQL_PAGE_SIZE = 30;
export const initialPaginationState = {
currentPage: 1,
prevPageCursor: '',
nextPageCursor: '',
first: GRAPHQL_PAGE_SIZE,
last: null,
};