make the default page size 10 for the run history (#3370)

This commit is contained in:
Shuchang Zheng
2025-09-04 22:25:47 -07:00
committed by GitHub
parent 00a734a98a
commit 90c72d84b7

View File

@@ -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,