fix: set page to -1 for all data

This commit is contained in:
jialin
2025-11-07 16:54:33 +08:00
parent 64e2cfa35a
commit fdb6ac7575
13 changed files with 19 additions and 31 deletions
@@ -56,7 +56,7 @@ const SystemLoad = () => {
useEffect(() => {
const fetchClusters = async () => {
try {
const res = await queryClusterList({ page: 1, perPage: 100 });
const res = await queryClusterList({ page: -1 });
const options = res.items.map((cluster) => ({
label: cluster.name,
value: cluster.id