Fleet UI: Set default pagination length to 20 (#7165)

This commit is contained in:
RachelElysia
2022-08-15 13:00:06 -04:00
committed by GitHub
parent b891e0d7f7
commit 9c7d2cfa60
9 changed files with 15 additions and 21 deletions
@@ -3,7 +3,7 @@ import { render, screen } from "@testing-library/react";
import { noop } from "lodash";
import DataTable from "./DataTable";
const DEFAULT_PAGE_SIZE = 100;
const DEFAULT_PAGE_SIZE = 20;
describe("DataTable - component", () => {
it("renders a data table based on the columns and data passed in", () => {