You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -34,11 +36,21 @@ Some tests are **unscored** (marked with `*`). These cover behaviors like case n
34
36
document.getElementById('table-normalization').innerHTML='<p><em>No probe data available yet. Run the Probe workflow manually on <code>main</code> to generate results.</em></p>';
35
37
return;
36
38
}
37
-
functionrender(data) {
39
+
var langData =window.PROBE_DATA;
40
+
var methodFilter =null;
41
+
var rfcLevelFilter =null;
42
+
43
+
functionrerender() {
44
+
var data = langData;
45
+
if (methodFilter) data =ProbeRender.filterByMethod(data, methodFilter);
46
+
if (rfcLevelFilter) data =ProbeRender.filterByRfcLevel(data, rfcLevelFilter);
0 commit comments