style: adjust ram prcision

This commit is contained in:
jialin
2025-11-19 18:47:55 +08:00
parent ca43c0b4b2
commit 2687fb187d
11 changed files with 20 additions and 30 deletions
@@ -57,7 +57,7 @@ const SystemLoad = () => {
const fetchClusters = async () => {
try {
const res = await queryClusterList({ page: -1 });
const options = res.items.map((cluster) => ({
const options = res.items.map((cluster: any) => ({
label: cluster.name,
value: cluster.id
}));