Am iterating through items and i would lie to show an input box if a certain radio button is checked
This is the form
<ion-card *ngFor="let checklist of checklists;let i=index">
<input type='radio' name="check{{checklist.id}}" value='yes_{{checklist.id}}'> Yes
<input type='radio' name="check{{checklist.id}}" value='no_{{checklist.id}}'> Not passed
<ion-item [hidden]="">//hide when Not passed radio is not checked
<ion-label floating>Comment</ion-label>
<ion-input type="text"></ion-input>
</ion-item>
</ion-card>
How do i hide the comment area when no is not checked and show it only when checked