Skip to content

Commit

Permalink
Fix email link in docs 404 message
Browse files Browse the repository at this point in the history
Refs #2258
  • Loading branch information
kimrutherford committed Jan 23, 2025
1 parent 4e94063 commit ed56221
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion etc/process-markdown.pl
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,7 @@ sub lines_from_file
print $docs_component_fh qq|
<div class="docs-404" *ngIf="pageName == '404'">
<div>
<app-not-found></app-not-found>
<app-not-found [path]="router.url"></app-not-found>
</div>
</div>
|;
Expand Down
2 changes: 1 addition & 1 deletion src/app/documentation/docs/docs.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<div class="docs-404" *ngIf="pageName == '404'">
<div>
<app-not-found></app-not-found>
<app-not-found [path]="router.url"></app-not-found>
</div>
</div>
<div *ngIf="section == 'about'">
Expand Down

0 comments on commit ed56221

Please sign in to comment.