From f3e8d3c10e91d609321bca956fce523e52fdfd02 Mon Sep 17 00:00:00 2001 From: Jesse Weinstein Date: Fri, 10 Oct 2014 09:53:33 -0700 Subject: [PATCH 1/3] Allow selecting reports by clicking on any part of the row, not just the tiny magnifying glass icon --- _attachments/partials/reports-table.html | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/_attachments/partials/reports-table.html b/_attachments/partials/reports-table.html index 81c7f51..407b733 100644 --- a/_attachments/partials/reports-table.html +++ b/_attachments/partials/reports-table.html @@ -18,14 +18,14 @@ - - {{report.displayDate}} - {{report.value.application_version_name}} - {{report.value.android_version}} - {{report.value.device}} + + {{report.displayDate}} + {{report.value.application_version_name}} + {{report.value.android_version}} + {{report.value.device}}
- {{report.value.signature.digest}} - Caused by: {{report.value.signature.rootCause}} + {{report.value.signature.digest}} + Caused by: {{report.value.signature.rootCause}}
\ No newline at end of file From f2f0d039a0f2920f06e1a7873a60522fdfb485eb Mon Sep 17 00:00:00 2001 From: Jesse Weinstein Date: Fri, 10 Oct 2014 09:59:50 -0700 Subject: [PATCH 2/3] Add confirmation dialog when deleting reports --- _attachments/script/ReportsBrowserControllers.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/_attachments/script/ReportsBrowserControllers.js b/_attachments/script/ReportsBrowserControllers.js index 3cb2c23..4dd248a 100644 --- a/_attachments/script/ReportsBrowserControllers.js +++ b/_attachments/script/ReportsBrowserControllers.js @@ -181,6 +181,9 @@ }; $scope.deleteReport = function(report) { + if (!confirm('Delete report?')) { + return; + } if($scope.selectedReport === report) { $scope.selectedReport = ""; } From 00b88cbcba521a0269eac4c7e4e21489ea69911e Mon Sep 17 00:00:00 2001 From: Jesse Weinstein Date: Tue, 14 Oct 2014 14:59:42 -0700 Subject: [PATCH 3/3] Allow selecting bugs by clicking on any part of the row, as was done for reports previously --- _attachments/partials/bugs-table.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/_attachments/partials/bugs-table.html b/_attachments/partials/bugs-table.html index b97b69b..57b75b2 100644 --- a/_attachments/partials/bugs-table.html +++ b/_attachments/partials/bugs-table.html @@ -38,12 +38,12 @@ -
{{bug.value.count}}
-
{{bug.latest}}
-
{{bug.key[0]}}
- +