diff --git a/module/block/view/qastatisticblock.html.php b/module/block/view/qastatisticblock.html.php
index d464865033..553ad3d0e4 100644
--- a/module/block/view/qastatisticblock.html.php
+++ b/module/block/view/qastatisticblock.html.php
@@ -50,8 +50,9 @@
+
builds as $build):?>
-
@@ -136,9 +138,10 @@ $(function()
{
$('[name^=build]').change(function()
{
- $(this).parents('.tab-pane').find('.table-row').addClass('hidden');
- $('#bugBox' + $(this).val()).removeClass('hidden');
+ var $tab = $('#bugBox' + $(this).val());
+ $tab.removeClass('hidden');
+ $tab.find('.progress-pie').progressPie();
+ $(this).parents('.tab-pane').find('.table-row').not($tab).addClass('hidden');
});
- $('[name^=build]').change();
})
diff --git a/module/testcase/view/create.html.php b/module/testcase/view/create.html.php
index 37d9051689..50bb5dea6d 100644
--- a/module/testcase/view/create.html.php
+++ b/module/testcase/view/create.html.php
@@ -140,7 +140,7 @@