提交 a5da3929 编写于 作者: J Joao Moreno

fixes #30946

上级 1efdbace
......@@ -401,6 +401,10 @@ export class Item extends Events.EventEmitter {
return WinJS.TPromise.as(null);
}
if (!Array.isArray(elements)) {
return WinJS.TPromise.wrapError(new Error('Please return an array of children.'));
}
elements = !elements ? [] : elements.slice(0);
elements = this.sort(elements);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册