浏览代码

Cleanup ids for slot.

Dominique CLAUSE 2 年之前
父节点
当前提交
a2092e090f
共有 1 个文件被更改,包括 1 次插入2 次删除
  1. 1 2
      nicegui/templates/index.html

+ 1 - 2
nicegui/templates/index.html

@@ -81,8 +81,7 @@
                 props: props
               }));
             }
-            const ids = ('ids' in data) ? data.ids : data;
-            const children = ids.map(id => renderRecursively(elements, id));
+            const children = data.ids.map(id => renderRecursively(elements, id));
             if (name === 'default' && element.text) {
               children.unshift(element.text);
             }