updated API call in results.html
This commit is contained in:
@@ -13,7 +13,7 @@
|
||||
<div class="row">
|
||||
<div class="col-lg-8">
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">Pick-a-Run</div>
|
||||
<div class="panel-heading">Results from Run #{{run_id}}</div>
|
||||
<div class="panel-body">
|
||||
<div id="sunburst"></div>
|
||||
</div>
|
||||
@@ -65,7 +65,7 @@
|
||||
.innerRadius(function(d) { return Math.max(0, y(d.y)); })
|
||||
.outerRadius(function(d) { return Math.max(0, y(d.y + d.dy)); });
|
||||
|
||||
d3.json("/tempest/api/tree/5", function(error, root) {
|
||||
d3.json("/tempest/api/tree/{{run_id}}", function(error, root) {
|
||||
if (error) throw error;
|
||||
|
||||
var path = svg.selectAll("path")
|
||||
|
||||
Reference in New Issue
Block a user