Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions projects/components/src/link/link.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ import { EMPTY, Observable } from 'rxjs';
<a
*htLetAsync="this.navData$ as navData"
class="ht-link"
target="{{ this.openInNewTab ? '_blank' : '' }}"
rel="noopener noreferrer"
[ngClass]="{ disabled: this.disabled || !navData }"
[routerLink]="navData?.path"
[queryParams]="navData?.extras?.queryParams"
Expand All @@ -29,9 +27,6 @@ export class LinkComponent implements OnChanges {
@Input()
public paramsOrUrl?: NavigationParams | string | null;

@Input()
public openInNewTab?: boolean;

@Input()
public disabled?: boolean;

Expand Down