@Wrybread wrote:
Using Ionic 4, and I’m trying to show a div only if two conditions are met:
<div *ngIf="variable1 === 1 && variable2 === 2">***</div>
That doesn’t work.
This works for just one variable though:
<div *ngIf="variable1 === 1">***</div>
I don’t imagine anyone has any tips?
Posts: 1
Participants: 1