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 656b53f commit f867e52Copy full SHA for f867e52
bin/typedoc.js
@@ -4354,7 +4354,7 @@ var td;
4354
continue;
4355
var depth = names.length - 1;
4356
var target = reflection;
4357
- while (target && depth > 0) {
+ while (target && depth >= 0) {
4358
target = target.parent;
4359
if (target.name != names[depth])
4360
continue search;
src/td/models/reflections/ProjectReflection.ts
@@ -97,7 +97,7 @@ module td
97
98
99
100
101
102
if (target.name != names[depth]) continue search;
103
depth -= 1;
0 commit comments