blob: 12a3b72b92785e9f480be6eb88f8b2a9deb4fb1e (
plain)
1
2
3
4
5
6
7
8
9
10
|
<div class="automated-upgrade-component">
<span innerHTML="{{statusText}}"> </span>
<div class="components-to-upgrade-list">
<ul>
<li class="components-to-upgrade-list-item " *ngFor="let component of upgradedComponentsList">
<upgrade-list-status-item [upgradedComponent]="component" [upgradeComponentStatus]="upgradeStatusMap[component.name]"></upgrade-list-status-item>
</li>
</ul>
</div>
</div>
|