Display origin in detailed builds of a module

This commit is contained in:
Lucas Verney 2016-12-01 22:17:16 -05:00
parent dac1b54853
commit 7c44534435
2 changed files with 5 additions and 0 deletions

View File

@ -59,6 +59,7 @@
<thead>
<tr>
<th>Time</th>
<th>Origin</th>
<th>Status</th>
</tr>
</thead>

View File

@ -108,6 +108,10 @@ function showBuildDetails(module, date_start, date_end) {
timeCell.innerText = moment(row.datetime).format('HH:mm')
buildRow.appendChild(timeCell)
var originCell = document.createElement('td')
originCell.innerText = row.origin
buildRow.appendChild(originCell)
var statusCell = document.createElement('td')
statusCell.innerText = row.status
statusCell.className = row.status