Skip to content

Commit

Permalink
fix(select-input): Update detect item as string
Browse files Browse the repository at this point in the history
  • Loading branch information
EndyKaufman committed Mar 10, 2019
1 parent 8a692cb commit 5491102
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -10,7 +10,7 @@
<ion-select-option
*ngFor="let item of items; trackBy: trackByFn;"
[value]="item.id">
{{item.title | customTranslate:item}}
{{(item.title || item) | customTranslate:item}}
</ion-select-option>
</ion-select>
</ng-container>

0 comments on commit 5491102

Please sign in to comment.