File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -600,7 +600,6 @@ export default class RapiDoc extends LitElement {
600
600
}
601
601
602
602
resetSelectedContentId ( ) {
603
- debugger ;
604
603
// No content is selected at start
605
604
this . selectedContentId = '' ;
606
605
// If there is hash in url then check if hash belong to any of the path in spec
@@ -609,7 +608,7 @@ export default class RapiDoc extends LitElement {
609
608
? 'overview' : hasValidPathInUrlHash ( this . resolvedSpec . tags )
610
609
? window . location . hash . substring ( 1 ) : '' ;
611
610
}
612
- // If there is no matching hash to path, check if there is sufficient data to display overview of just display first path from first tag
611
+ // If there is no matching hash to path, check if there is sufficient data to display overview otherwise just display first path from first tag
613
612
if ( ! this . selectedContentId ) {
614
613
if ( this . showInfo === 'true' && ( this . resolvedSpec . info ?. description || this . resolvedSpec . info ?. title ) ) {
615
614
this . selectedContentId = 'overview' ;
You can’t perform that action at this time.
0 commit comments