File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
src/lib/output/themes/default/partials Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 29
29
- Fixed duplicate namespace in documentation if ` @namespace ` is used on a variable with an associated namespace, #2364 .
30
30
- Fixed ` @namespace ` property discovery if merged with a type and the type was declared first #2364 .
31
31
- Tables in markdown are now styled, #2366 .
32
+ - Sidebar links no longer open in a new tab, #2353 .
32
33
- Symbol locations for signatures on ` reflection.sources ` now considers the node's name like non-signature location discovery does.
33
34
34
35
### Thanks!
Original file line number Diff line number Diff line change @@ -38,9 +38,7 @@ export function sidebarLinks(context: DefaultThemeRenderContext) {
38
38
return (
39
39
< nav id = "tsd-sidebar-links" class = "tsd-navigation" >
40
40
{ links . map ( ( [ label , url ] ) => (
41
- < a href = { url } target = "_blank" >
42
- { label }
43
- </ a >
41
+ < a href = { url } > { label } </ a >
44
42
) ) }
45
43
</ nav >
46
44
) ;
You can’t perform that action at this time.
0 commit comments