File tree 2 files changed +5
-1
lines changed
src/lib/converter/plugins
2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 10
10
- Fixed an infinite loop when ` skipLibCheck ` is used to ignore some compiler errors, #2438 .
11
11
- ` @example ` tag titles will now be rendered in the example heading, #2440 .
12
12
- Correctly handle transient symbols in ` @namespace ` -created namespaces, #2444 .
13
+ - TypeDoc no longer displays the "Hierarchy" section if there is no inheritance hierarchy to display.
13
14
14
15
### Thanks!
15
16
Original file line number Diff line number Diff line change @@ -158,7 +158,10 @@ export class TypePlugin extends ConverterComponent {
158
158
push ( reflection . extendedBy ) ;
159
159
}
160
160
161
- reflection . typeHierarchy = root ;
161
+ // No point setting up a hierarchy if there is no hierarchy to display
162
+ if ( root . next ) {
163
+ reflection . typeHierarchy = root ;
164
+ }
162
165
} ) ;
163
166
}
164
167
}
You can’t perform that action at this time.
0 commit comments