commit 7d08c78103792e599b0676c318da1aca54501289 Author: Apekshit Sharma Date: Mon Jul 10 12:01:02 2017 -0700 HBASE-18341 (addendum) Replace '.' in test names with '_' when using them as html ids since dot have special significance in CSS selectors. Without it, we weren't able to select elements and add svg (trends columns) to them. Change-Id: Ia63ff0851f0a2fad0789a24edf2f0ad00060d578 diff --git a/dev-support/flaky-dashboard-template.html b/dev-support/flaky-dashboard-template.html index 49ab9b063c..f37c7d5f53 100644 --- a/dev-support/flaky-dashboard-template.html +++ b/dev-support/flaky-dashboard-template.html @@ -156,7 +156,8 @@ Legend : green: success, red: failed, yellow: timeout, blue: hanging {{ failed|length }} / {{ timeout|length }} / {{ hanging|length }} - {% set sparkline_id = "sparkline_" ~ test ~ "_" ~ url_counter %} + {# Replace '.' in test names with '_' because dots are part of css selectors. #} + {% set sparkline_id = "sparkline_" ~ test|replace(".","_") ~ "_" ~ url_counter %}