Skip to content

Commit 0217790

Browse files
docs: fix navigation (#3176)
1 parent ece03e9 commit 0217790

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

projects/ngrx.io/src/app/layout/nav-item/nav-item.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
class="heading-container"
1515
*ngIf="node.children">
1616
<a
17-
*ngIf="node.url !== null"
17+
*ngIf="node.url"
1818
href="{{node.url}}"
1919
[ngClass]="classes"
2020
title="{{node.tooltip}}"
@@ -27,7 +27,7 @@
2727
</a>
2828

2929
<button
30-
*ngIf="node.url === null"
30+
*ngIf="!node.url"
3131
type="button"
3232
[ngClass]="classes"
3333
title="{{node.tooltip}}"

0 commit comments

Comments
 (0)