fix: 顶部链接中只有博客才在新页面打开

This commit is contained in:
Zhicheng WANG 2020-03-28 18:41:16 +08:00
parent ef80c60800
commit e40befc1b1

View File

@ -12,7 +12,7 @@ import { NavigationNode } from 'app/navigation/navigation.service';
<ul role="navigation"> <ul role="navigation">
<li *ngFor="let node of nodes"> <li *ngFor="let node of nodes">
<a class="nav-link" [class.highlight]="node.highlight" [href]="node.url" [title]="node.tooltip || node.title" <a class="nav-link" [class.highlight]="node.highlight" [href]="node.url" [title]="node.tooltip || node.title"
[target]="node.external?'_blank':undefined"> [target]="node.external?'_blank':'_self'">
<span class="nav-link-inner">{{ node.title }}</span> <span class="nav-link-inner">{{ node.title }}</span>
</a> </a>
</li> </li>