Skip to content

Commit

Permalink
Fix ng-show issues on monsters.
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinGaudin committed Jul 3, 2013
1 parent cd74fd3 commit 99519b5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion _attachments/partials/report-details.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ <h3>Summary</h3>
<th><i class="icon-user"></i></th>
<th>Installation ID</th>
<td>
<a class="label label-inverse" href="#/reports-browser/{{acralyzer.app}}/user/{{report.INSTALLATION_ID}}" ng-show="{{report.INSTALLATION_ID}}">
<a class="label label-inverse" href="#/reports-browser/{{acralyzer.app}}/user/{{report.INSTALLATION_ID}}" ng-show="report.INSTALLATION_ID">
<img class="avatar" monsterid="{{report.INSTALLATION_ID}}" title="{{report.INSTALLATION_ID}}"/>
{{report.INSTALLATION_ID}}
</a>
Expand Down
2 changes: 1 addition & 1 deletion _attachments/partials/reports-table.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<i class="icon-trash" title="Delete permanently"></i>
</a>
</div>
<span title="User" class="div-table-cell label label-inverse"><img class="avatar" monsterid="{{report.value.installation_id}}" ng-show="{{report.value.installation_id}}"/></span>
<span title="User" class="div-table-cell label label-inverse"><img class="avatar" monsterid="{{report.value.installation_id}}" ng-show="report.value.installation_id"/></span>
<span title="Crash date" class="div-table-cell label label-info">{{report.displayDate}}</span>
<span title="Application version name" class="div-table-cell label label-warning">{{report.value.application_version_name}}</span>
<span title="Android verion" class="div-table-cell label label-success">{{report.value.android_version}}</span>
Expand Down

0 comments on commit 99519b5

Please sign in to comment.