feat(componentDeployment): 反转部署列表显示顺序

master
钟良源 2 months ago
parent 96978cbbdf
commit ea6c483831

@ -39,7 +39,7 @@ const CollapseList: React.FC<CollapseListProps> = ({ searchKeyword, runStatus })
} }
const res: any = await getDeployList(params); const res: any = await getDeployList(params);
if (res.code === 200) setCollapses(res.data.records); if (res.code === 200) setCollapses(res.data.records.reverse());
}; };
// 上架组件 // 上架组件

Loading…
Cancel
Save