We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 690ed10 commit 04c20e3Copy full SHA for 04c20e3
src/Renderer/HtmlQueryResultsRenderer.ts
@@ -264,11 +264,14 @@ export class HtmlQueryResultsRenderer {
264
} else {
265
await this.addListItem(listItem, listItemIndex, listItem.children);
266
}
267
+
268
+ // The children of this item will be added thanks to recursion and the fact that we always render all children currently
269
this.addedListItems.add(listItem);
270
- for (const childTask of listItem.children) {
- this.addedListItems.add(childTask);
271
- }
+ // We think this code may be needed in future, we have been unable to write a failing test for it
272
+ // for (const childTask of listItem.children) {
273
+ // this.addedListItems.add(childTask);
274
+ // }
275
276
277
0 commit comments