make the default page size 10 for the run history (#3370)
This commit is contained in:
@@ -37,7 +37,7 @@ function RunHistory() {
|
||||
const page = searchParams.get("page") ? Number(searchParams.get("page")) : 1;
|
||||
const itemsPerPage = searchParams.get("page_size")
|
||||
? Number(searchParams.get("page_size"))
|
||||
: 5;
|
||||
: 10;
|
||||
const [statusFilters, setStatusFilters] = useState<Array<Status>>([]);
|
||||
const { data: runs, isFetching } = useRunsQuery({
|
||||
page,
|
||||
|
||||
Reference in New Issue
Block a user