Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue #70 #95

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions _attachments/partials/bugs-table.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@
<span title="Updating state" ng-show="bug.solvedPending"><img src="img/polling.gif"/></span>
</a>
</div>
<div title="Number of reports" class="div-table-cell label">{{bug.value.count}}</div>
<div title="Latest report" class="div-table-cell label label-info">{{bug.latest}}</div>
<div title="Application version code" class="div-table-cell label label-warning">{{bug.key[0]}}</div>
<div class="div-table-cell exceptions">
<a href="#/reports-browser/{{acralyzer.app}}/bug/{{bug.id}}" title="Number of reports" class="div-table-cell label">{{bug.value.count}}</a>
<a href="#/reports-browser/{{acralyzer.app}}/bug/{{bug.id}}" title="Latest report" class="div-table-cell label label-info">{{bug.latest}}</a>
<a href="#/reports-browser/{{acralyzer.app}}/bug/{{bug.id}}" title="Application version code" class="div-table-cell label label-warning">{{bug.key[0]}}</a>
<a href="#/reports-browser/{{acralyzer.app}}/bug/{{bug.id}}" class="div-table-cell exceptions">
<span title="Exception" class="label label-important">{{bug.key[1]}}</span><br/>
<span title="Root exception" class="label label-inverse" ng-show="bug.key[2]">Caused by: {{bug.key[2]}}</span>
</div>
</a>
</div>
</div>
14 changes: 7 additions & 7 deletions _attachments/partials/reports-table.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@
<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="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>
<span title="Device" class="div-table-cell label">{{report.value.device}}</span>
<a ng-click="loadReport(report)" title="User" class="div-table-cell label label-inverse"><img class="avatar" monsterid="{{report.value.installation_id}}" ng-show="report.value.installation_id"/></a>
<a ng-click="loadReport(report)" title="Crash date" class="div-table-cell label label-info">{{report.displayDate}}</a>
<a ng-click="loadReport(report)" title="Application version name" class="div-table-cell label label-warning">{{report.value.application_version_name}}</a>
<a ng-click="loadReport(report)" title="Android verion" class="div-table-cell label label-success">{{report.value.android_version}}</a>
<a ng-click="loadReport(report)" title="Device" class="div-table-cell label">{{report.value.device}}</a>
<div class="div-table-cell exceptions">
<span title="Exception" class="label label-important">{{report.value.signature.digest}}</span>
<span title="Root exception" class="label label-inverse" ng-show="report.value.signature.rootCause">Caused by: {{report.value.signature.rootCause}}</span>
<a ng-click="loadReport(report)" title="Exception" class="label label-important">{{report.value.signature.digest}}</a>
<a ng-click="loadReport(report)" title="Root exception" class="label label-inverse" ng-show="report.value.signature.rootCause">Caused by: {{report.value.signature.rootCause}}</a>
</div>
</div>
</div>
3 changes: 3 additions & 0 deletions _attachments/script/ReportsBrowserControllers.js
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,9 @@
};

$scope.deleteReport = function(report) {
if (!confirm('Delete report?')) {
return;
}
if($scope.selectedReport === report) {
$scope.selectedReport = "";
}
Expand Down