Skip to content

Commit

Permalink
fix: Improve jenkins-table layout (#381)
Browse files Browse the repository at this point in the history
  • Loading branch information
NotMyFault authored May 3, 2022
1 parent 44d3398 commit 16ca0fc
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ THE SOFTWARE.
-->
<?jelly escape-by-default='true'?>
<j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler">
<table class="jenkins-table pane sortable" id="testresult">
<table class="jenkins-table sortable" id="testresult">
<thead>
<tr>
<th class="pane-header" style="width:10em">${%Build}</th>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ THE SOFTWARE.
<j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler">
<j:if test="${it.totalCount!=0}">
<h2>${%All Tests}</h2>
<table class="jenkins-table pane sortable" id="testresult">
<table class="jenkins-table sortable" id="testresult">
<thead>
<tr>
<th class="pane-header">${%Test name}</th>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ THE SOFTWARE.

<?jelly escape-by-default='true'?>
<j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler">
<table class="jenkins-table pane sortable" id="testresult">
<table class="jenkins-table sortable" id="testresult">
<thead>
<tr>
<th class="pane-header">${%Build}</th>
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/hudson/tasks/junit/History/index.jelly
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ THE SOFTWARE.
<j:set var="historySummary" value="${it.retrieveHistorySummary(start)}"/>

<br/>
<table class="jenkins-table pane sortable" id="testresult">
<table class="jenkins-table sortable" id="testresult">
<thead>
<tr>
<th class="pane-header">${%Build}</th>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ THE SOFTWARE.
<j:otherwise>
<test:bar/>
<h2>${%Drill Down}</h2>
<table class="jenkins-table pane sortable">
<table class="jenkins-table sortable">
<thead>
<tr>
<th class="pane-header">${%Test}</th>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ THE SOFTWARE.
<j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler" xmlns:t="/lib/hudson/test">
<j:if test="${it.failCount!=0}">
<h2>${%All Failed Tests}</h2>
<table class="jenkins-table pane sortable">
<table class="jenkins-table sortable">
<thead>
<tr>
<th class="pane-header">${%Test Name}</th>
Expand All @@ -51,7 +51,7 @@ THE SOFTWARE.

<j:if test="${it.totalCount!=0}">
<h2>${%All Tests}</h2>
<table class="jenkins-table pane sortable" id="testresult">
<table class="jenkins-table sortable" id="testresult">
<thead>
<tr>
<th class="pane-header">${it.childTitle}</th>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ THE SOFTWARE.

<?jelly escape-by-default='true'?>
<j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler">
<table class="jenkins-table pane sortable" id="testresult">
<table class="jenkins-table sortable" id="testresult">
<thead>
<tr>
<th class="pane-header">${%Build}</th>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ THE SOFTWARE.
<a href="../${report.child.project.shortUrl}testReport">${report.child.project.name}</a>
</h3>

<table class="jenkins-table pane sortable">
<table class="jenkins-table sortable">
<thead>
<tr>
<th class="pane-header">Test Name</th>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ THE SOFTWARE.

<j:if test="${it.totalCount!=0}">
<h2>${%All Tests}</h2>
<table class="jenkins-table pane sortable" id="testresult">
<table class="jenkins-table sortable" id="testresult">
<thead>
<tr>
<th class="pane-header">${it.childTitle}</th>
Expand Down

0 comments on commit 16ca0fc

Please sign in to comment.