Skip to content

Commit

Permalink
[front: editLogs] hide link in select filters
Browse files Browse the repository at this point in the history
  • Loading branch information
t8g committed Sep 8, 2017
1 parent 6d4bc4e commit 1ff559e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
<div *ngIf="requirement === 'recommended'" class="recommended-field">{{ 'recommended' | translate }}</div>
<md-icon *ngIf="description" [md-tooltip]="description">info_outline
</md-icon>
<a *ngIf="id" routerLink="/{{ api }}/{{ id }}" target="_blank" queryParamsHandling="preserve">
<md-icon>open_in_new</md-icon>
</a>
<a *ngIf="id && showLink" routerLink="/{{ api }}/{{ id }}" target="_blank" queryParamsHandling="preserve">
<md-icon>open_in_new</md-icon>
</a>
</div>
</div>
<div class="md-input-underline" [ngClass]="{ 'md-disabled': selectControl?.disabled }">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ export class IsariSelectComponent implements OnInit, OnChanges {
@Input() stringValue: Observable<any>;
@Input() create: Function;
@Output() onUpdate = new EventEmitter<any>();
@Input() showLink: boolean = true;

max = 20;
skip = 0;
Expand Down

0 comments on commit 1ff559e

Please sign in to comment.