Skip to content

Commit 56c89cb

Browse files
committed
fix(sidebar-nav): ie issues
1 parent b924a8d commit 56c89cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projects/coreui/angular/src/lib/sidebar/app-sidebar-nav/app-sidebar-nav-link.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export class AppSidebarNavLinkComponent implements OnInit {
4646
}
4747

4848
public isDisabled() {
49-
return !!(this.item.attributes && this.item.attributes.disabled);
49+
return (this.item.attributes && this.item.attributes.disabled) ? true : null;
5050
}
5151

5252
public isExternalLink() {

0 commit comments

Comments
 (0)