Skip to content

Commit 9259dee

Browse files
authored
Merge pull request #978 from mohitsuman/gh-966
Fix #966 update icon for No download components
2 parents a5dda44 + fff7560 commit 9259dee

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

browser/pages/confirm/confirm.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
</div>
2121
</div>
2222
<div class="confirm-summary-list">
23-
<div ng-repeat="component in downloadComp | orderBy: '-downloaded'" class="summary-info" id="{{component.keyName}}-info">
24-
<span ng-class="{'pficon pficon-ok': component.downloaded, 'fa fa-download info-color': !component.downloaded}"></span>
23+
<div ng-repeat="component in downloadComp | orderBy: ['-downloaded','size']" class="summary-info" id="{{component.keyName}}-info">
24+
<span ng-class="{'pficon pficon-ok': component.downloaded || component.size == 0, 'fa fa-download info-color': !component.downloaded}"></span>
2525
<strong id="{{component.keyName}}-name">&nbsp;{{component.productName}}</strong>
2626
<span id="{{component.keyName}}-version" class="product-info">| {{component.productVersion}}</span>
2727
<strong id="{{component.keyName}}-download-status" class="pull-right">{{component.getDownloadStatus()}}</strong>

0 commit comments

Comments
 (0)