Skip to content

Commit

Permalink
Align test result table headers where fields are
Browse files Browse the repository at this point in the history
  • Loading branch information
olivergondza committed Aug 11, 2017
1 parent 7a675c3 commit 1d6412a
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ THE SOFTWARE.
-->

<?jelly escape-by-default='true'?>
<j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler" xmlns:d="jelly:define" xmlns:l="/lib/layout" xmlns:t="/lib/hudson" xmlns:f="/lib/form" xmlns:i="jelly:fmt" xmlns:local="local" xmlns:test="/lib/test">
<j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler" xmlns:l="/lib/layout" xmlns:t="/lib/hudson" xmlns:test="/lib/test">
<l:layout title="Test">
<st:include page="sidepanel.jelly" it="${it.owner}"/>
<l:main-panel>
Expand All @@ -33,10 +33,10 @@ THE SOFTWARE.
<table class="pane sortable bigtable">
<tr>
<td class="pane-header">Configuration Name</td>
<td class="pane-header" style="width:4em">Duration</td>
<td class="pane-header" style="width:4em">All</td>
<td class="pane-header" style="width:4em">Failed</td>
<td class="pane-header" style="width:4em">Skipped</td>
<td class="pane-header" style="width:4em;text-align:right">Duration</td>
<td class="pane-header" style="width:4em;text-align:right">All</td>
<td class="pane-header" style="width:4em;text-align:right">Failed</td>
<td class="pane-header" style="width:4em;text-align:right">Skipped</td>
</tr>

<j:forEach var="report" items="${it.childReports}">
Expand Down

0 comments on commit 1d6412a

Please sign in to comment.