Skip to content
This repository has been archived by the owner on Nov 7, 2018. It is now read-only.

Commit

Permalink
Bug 1493192: Flip order of sent/unsent crashes on about:crashes r=mco…
Browse files Browse the repository at this point in the history
  • Loading branch information
Errolyn committed Nov 2, 2018
1 parent 7b38452 commit dc9dbb2
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions toolkit/crashreporter/content/crashes.xhtml
Original file line number Diff line number Diff line change
Expand Up @@ -18,35 +18,35 @@
<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="reportListSubmitted" class="hidden">
<div id="reportListUnsubmitted" 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>
<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-submitted-heading"></th>
<th data-l10n-id="date-crashed-heading"></th>
</tr>
</thead>
<tbody id="submitted"></tbody>
<tbody id="unsubmitted"></tbody>
</table>
</div>

<div id="reportListUnsubmitted" class="hidden">
<div id="reportListSubmitted" 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>
<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-crashed-heading"></th>
<th data-l10n-id="date-submitted-heading"></th>
</tr>
</thead>
<tbody id="unsubmitted"></tbody>
<tbody id="submitted"></tbody>
</table>
</div>
</body>
Expand Down

0 comments on commit dc9dbb2

Please sign in to comment.