blob: dae6762e0d47d375cb42188248442cc6b6956648 (
plain)
1
2
3
4
5
|
<div class="status-properties" *ngFor="let prop of properties">
<span class="status-property-name" [ngClass]="{'mark': prop.key=='In-maintenance'}">{{ prop.key }}</span>
<span class="status-property-value" [attr.data-tests-id]="'status-property-'+prop?.testId" >{{ prop.value }}</span>
<span class="separator">|</span>
</div>
|