From 82646705d6590c09b72fef2a45970fc32f469c1f Mon Sep 17 00:00:00 2001 From: dongyukun <1208714201@qq.com> Date: 星期四, 22 五月 2025 16:12:08 +0800 Subject: [PATCH] 调度建议 调度历史 --- src/utils/tree.ts | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/src/utils/tree.ts b/src/utils/tree.ts index 91059ef..e5db503 100644 --- a/src/utils/tree.ts +++ b/src/utils/tree.ts @@ -376,6 +376,9 @@ let str = '' function performAThoroughValidation(arr) { + if (typeof arr === 'undefined' || !Array.isArray(arr) || arr.length === 0) { + return false + } for (const item of arr) { if (item.id === nodeId) { str += ` / ${item.name}` -- Gitblit v1.9.3