Skip to content

Commit

Permalink
Bug 1179337 - Quiet logviewer error on first-click of a failure-step
Browse files Browse the repository at this point in the history
  • Loading branch information
tojon committed Aug 19, 2015
1 parent 6e23720 commit 7c15aeb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/partials/logviewer/lvLogSteps.html
Expand Up @@ -2,7 +2,7 @@
<div ng-repeat="step in artifact.step_data.steps"
ng-click="displayLog(step)"
ng-class="{'selected': (displayedStep.order === step.order)}"
ng-if="showSuccessful === true || step.result !== 'success'"
ng-show="showSuccessful === true || step.result !== 'success'"
class="btn btn-block lv-step clearfix {{::getShadingClass(step.result)}}"
order="{{step.order}}">
<span class="pull-left clearfix text-left">
Expand Down

0 comments on commit 7c15aeb

Please sign in to comment.