Skip to content

Commit

Permalink
KYLO-62 show active/disabled icon for Category -> related feeds
Browse files Browse the repository at this point in the history
  • Loading branch information
scottreisdorf committed Dec 11, 2018
1 parent d343951 commit c51e3a2
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@
<div>{{feed.feedName}}</div>
</md-input-container>
</div>
<div flex="10" class="md-list-item-text ">
<ng-md-icon icon="check"></ng-md-icon>
<div flex="10" class="md-list-item-text " ng-class="{'disabled':feed.state == 'DISABLED'}">
<ng-md-icon icon="check" ng-if="feed.state != 'DISABLED'"></ng-md-icon>
<ng-md-icon icon="block" ng-if="feed.state == 'DISABLED'"></ng-md-icon>
</div>
<div flex="40" class="md-list-item-text ">
{{feed.updateDate | date : 'MM/dd/yyyy hh:mm:ss'}}
Expand Down

0 comments on commit c51e3a2

Please sign in to comment.