I have a Boolean argument in an * ngIf, but it does not seem to work. If the argument is true:
<ion-input type="text" *ngIf="produto.fracionado" value="Sim" readonly></ion-input>
If the argument is false:
<ion-input type="text" *ngIf="!produto.fracionado" value="Não" readonly></ion-input>
However, it is always returned "Yes", even for cases of the false argument.