author | Errolyn <sam@fishy.ninja> |
Fri, 02 Nov 2018 19:20:06 +0000 | |
changeset 444196 | b9a0d600e885107a741ad7e98a9be6aeb0c6d2b4 |
parent 444195 | 0a69cd7ad7acdcd60fc5031188307048d94caf78 |
child 444197 | a672ddc3be9ff55553aa5ffeead42a505e38bb94 |
push id | 72248 |
push user | mconley@mozilla.com |
push date | Fri, 02 Nov 2018 19:21:17 +0000 |
treeherder | autoland@b9a0d600e885 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | mconley |
bugs | 1493192 |
milestone | 65.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/toolkit/crashreporter/content/crashes.xhtml +++ b/toolkit/crashreporter/content/crashes.xhtml @@ -13,47 +13,47 @@ <script type="application/javascript" src="chrome://global/content/crashes.js"/> <title data-l10n-id="crash-reports-title"></title> </head> <body> <p id="noConfig" class="hidden" data-l10n-id="no-config-label"></p> <p id="noSubmittedReports" class="hidden" data-l10n-id="no-reports-label"></p> + <div id="reportListUnsubmitted" class="hidden"> + <div class="table-title-container"> + <h2 class="lighter-font-weight" data-l10n-id="crashes-unsubmitted-label"></h2> + <button id="clearUnsubmittedReports" class="wide-button" data-l10n-id="delete-button-label"></button> + </div> + <table> + <thead> + <tr> + <th data-l10n-id="id-heading"></th> + <th data-l10n-id="date-crashed-heading"></th> + </tr> + </thead> + <tbody id="unsubmitted"></tbody> + </table> + </div> + <div id="reportListSubmitted" class="hidden"> <div class="table-title-container"> <h2 class="lighter-font-weight" data-l10n-id="crashes-submitted-label"></h2> <button id="clearSubmittedReports" class="wide-button" data-l10n-id="delete-button-label"></button> </div> <table> <thead> <tr> <th data-l10n-id="id-heading"></th> <th data-l10n-id="date-submitted-heading"></th> </tr> </thead> <tbody id="submitted"></tbody> </table> </div> - - <div id="reportListUnsubmitted" class="hidden"> - <div class="table-title-container"> - <h2 class="lighter-font-weight" data-l10n-id="crashes-unsubmitted-label"></h2> - <button id="clearUnsubmittedReports" class="wide-button" data-l10n-id="delete-button-label"></button> - </div> - <table> - <thead> - <tr> - <th data-l10n-id="id-heading"></th> - <th data-l10n-id="date-crashed-heading"></th> - </tr> - </thead> - <tbody id="unsubmitted"></tbody> - </table> - </div> </body> <template id="crashReportRow"> <tr> <td class="crash-id"></td> <td></td> <td class="float-right"></td> </tr>