From b2d14f16a6d208e834dfe06bad0dd50a4499374e Mon Sep 17 00:00:00 2001 From: Lee94 Date: Thu, 2 Mar 2023 13:44:37 +0800 Subject: [PATCH] =?UTF-8?q?=E6=97=A0JIRA=E4=BB=BB=E5=8A=A1=20es6=E5=86=99?= =?UTF-8?q?=E6=B3=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/core/structure/tree.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/core/structure/tree.js b/src/core/structure/tree.js index 839b51bec..d79ac99ef 100644 --- a/src/core/structure/tree.js +++ b/src/core/structure/tree.js @@ -127,9 +127,7 @@ continue; } if (temp != null) { - BI.each(temp.getChildren(), function(_i, t) { - queue.push(t); - }) + queue.push(...temp.getChildren()); } } },