Display origin in detailed builds of a module
This commit is contained in:
parent
dac1b54853
commit
7c44534435
@ -59,6 +59,7 @@
|
|||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Time</th>
|
<th>Time</th>
|
||||||
|
<th>Origin</th>
|
||||||
<th>Status</th>
|
<th>Status</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
|
@ -108,6 +108,10 @@ function showBuildDetails(module, date_start, date_end) {
|
|||||||
timeCell.innerText = moment(row.datetime).format('HH:mm')
|
timeCell.innerText = moment(row.datetime).format('HH:mm')
|
||||||
buildRow.appendChild(timeCell)
|
buildRow.appendChild(timeCell)
|
||||||
|
|
||||||
|
var originCell = document.createElement('td')
|
||||||
|
originCell.innerText = row.origin
|
||||||
|
buildRow.appendChild(originCell)
|
||||||
|
|
||||||
var statusCell = document.createElement('td')
|
var statusCell = document.createElement('td')
|
||||||
statusCell.innerText = row.status
|
statusCell.innerText = row.status
|
||||||
statusCell.className = row.status
|
statusCell.className = row.status
|
||||||
|
Loading…
Reference in New Issue
Block a user