Display origin in detailed builds of a module
This commit is contained in:
parent
dac1b54853
commit
7c44534435
@ -59,6 +59,7 @@
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Time</th>
|
||||
<th>Origin</th>
|
||||
<th>Status</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user