소스 검색

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);
             }