Skip to content

Commit

Permalink
#466 Show analyzerId if analyzer name is undefined
Browse files Browse the repository at this point in the history
  • Loading branch information
To-om committed Feb 8, 2018
1 parent 1a347e4 commit e4d65c7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ <h3 class="pv-xxs pr-xxs text-primary">
<a ng-if="jobs.length > 1" class="noline mr-xxs" href ng-click="analyzers[analyzerId].showRows = !analyzers[analyzerId].showRows">
<i class="fa" ng-class="{ true:'fa-minus-square-o', false:'fa-plus-square-o' }[analyzers[analyzerId].showRows]"></i>
</a>
<span uib-tooltip="{{analyzer.description}}">{{analyzer.name}} {{analyzer.version}}</span>
<span uib-tooltip="{{analyzer.description}}">{{analyzer.name ? (analyzer.name + ' ' + analyzer.version) : analyzerId}}</span>
<!-- <div class="text-muted">{{}}</div> -->
</td>
<!-- <td>
Expand Down

0 comments on commit e4d65c7

Please sign in to comment.