When dealing with an object that returns boolean "issues", I specify it as a string. If the value is true, I aim to show a checkmark; if false, I want to display a cross.
<ul *ngFor="let filtered of reposFiltered | keyvalue">
<li *ngIf="filtered.key=='issues' && filtered.value=='true'"> <i class="bi bi-check-lg"> </i> </li>
<li *ngIf="filtered.key=='issues' && filtered.value=='false'"> <i class="bi bi-x-lg"> </i> </li>
</ul>
Object:
description: "The personal website of Ben Balter. Built using Jekyll and GitHub Pages. See humans.txt for more infos."
html: "https://github.com/mojombo/benbalter.github.com"
issues: false
language: "CSS"
name: "benbalter.github.com"
[[Prototype]]: Object
Current output: This specific field does not appear on the list.
Desired output: When true, show a checkmark; when false, display a cross.