diff --git a/static/index.html b/static/index.html index e4915a7..74a30ab 100644 --- a/static/index.html +++ b/static/index.html @@ -59,6 +59,7 @@ Time + Origin Status diff --git a/static/js/views/moduleView.js b/static/js/views/moduleView.js index d907897..cad07b2 100644 --- a/static/js/views/moduleView.js +++ b/static/js/views/moduleView.js @@ -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