fix: collpase instance error

This commit is contained in:
jialin
2025-07-04 17:49:17 +08:00
parent 3d93eda92d
commit 27761566c9
@@ -159,9 +159,9 @@ const RenderWorkerDownloading = (props: {
distributed_servers || {};
let severList: DistributedServerItem[] = [];
if (ray_actors.length > 0) {
if (ray_actors?.length > 0) {
severList = ray_actors;
} else if (subordinate_workers.length > 0) {
} else if (subordinate_workers?.length > 0) {
severList = subordinate_workers;
}