We need to show zero products found if isCriteriaMatched=false
<div *ngIf="modePopUp === 'review'">
<div *ngFor="let rack of racksModels">
<h3 class="models-count">{{ rack.Name }} - Found <span class="model-count" [ngClass]="{'red-text': rack.models?.length === 0,'green-text':rack.models?.length!==0}">{{rack.models?.length}} products</span> matching the load.</h3>
</div>
</div>