Skip to content

Commit

Permalink
docs: fix navigation (#3176)
Browse files Browse the repository at this point in the history
  • Loading branch information
markostanimirovic authored Oct 16, 2021
1 parent ece03e9 commit 0217790
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
class="heading-container"
*ngIf="node.children">
<a
*ngIf="node.url !== null"
*ngIf="node.url"
href="{{node.url}}"
[ngClass]="classes"
title="{{node.tooltip}}"
Expand All @@ -27,7 +27,7 @@
</a>

<button
*ngIf="node.url === null"
*ngIf="!node.url"
type="button"
[ngClass]="classes"
title="{{node.tooltip}}"
Expand Down

0 comments on commit 0217790

Please sign in to comment.