Skip to content

Commit

Permalink
again
Browse files Browse the repository at this point in the history
  • Loading branch information
clemiller committed Jul 10, 2024
1 parent 2394c3e commit 6a3827d
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions nav-app/src/app/list-input/list-input.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,13 @@
[(ngModel)]="item[config.valueField]"
(input)="updateList()"/>
</mat-form-field>
@if (includeLinks && item.valid()) {
<span> trying something </span>
<a class="assigned-link"
href="{{ item[config.valueField] }}"
target="_blank"
rel="noopener noreferrer">
{{ item[config.nameField] }}
</a>
}
<a *ngIf="includeLinks && item.valid()"
class="assigned-link"
href="{{ item[config.valueField] }}"
target="_blank"
rel="noopener noreferrer">
{{ item[config.nameField] }}
</a>
<div class="remove-button">
<button class="button" (click)="remove(i)">remove</button>
</div>
Expand Down

0 comments on commit 6a3827d

Please sign in to comment.