Skip to content
This repository has been archived by the owner on Aug 25, 2020. It is now read-only.

Commit

Permalink
fix(ui/ext-select): fix typings, use non-deprecated getter
Browse files Browse the repository at this point in the history
  • Loading branch information
navix committed Nov 11, 2018
1 parent 8cd803e commit 0a6db83
Showing 1 changed file with 4 additions and 4 deletions.
Expand Up @@ -15,12 +15,12 @@
</div>
<div *ngIf="!service.multiple && !service.input"
class="model">
<span class="value">
{{ service.inputView?.view }}
</span>
<span class="value">
{{ service.inputViews[0]?.view }}
</span>
</div>
<ng-container *ngIf="multiple">
<span *ngFor="let item of service.inputView" class="item">
<span *ngFor="let item of service.inputViews" class="item">
{{ item.view }}
<kit-icon (mousedown)="removeItem($event, item.model)"
[xml]="icons.cross"
Expand Down

0 comments on commit 0a6db83

Please sign in to comment.