Skip to content

Commit

Permalink
fix(help): load on page load
Browse files Browse the repository at this point in the history
  • Loading branch information
owilliams320 committed Mar 20, 2024
1 parent fdadaad commit b1ce23b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,8 @@ export class AppComponent {
this.getHelpJSON().subscribe({
next: (items: IMarkdownNavigatorItem[]) => {
this.items = items;

this.cdr.markForCheck();
},
});
}
Expand All @@ -164,8 +166,6 @@ export class AppComponent {
this.forcedOpen = JSON.parse(
localStorage.getItem('app-preference-open') || 'false'
);


}

setContainedPage(url: string) {
Expand Down

0 comments on commit b1ce23b

Please sign in to comment.