diff --git a/stackviz/templates/tempest/results.html b/stackviz/templates/tempest/results.html index d1c2fc5..2cdfaaf 100644 --- a/stackviz/templates/tempest/results.html +++ b/stackviz/templates/tempest/results.html @@ -13,7 +13,7 @@
-
Pick-a-Run
+
Results from Run #{{run_id}}
@@ -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")