Skip to content

Commit d099010

Browse files
committed
Remove gray bar
1 parent c6d73b9 commit d099010

1 file changed

Lines changed: 0 additions & 4 deletions

File tree

docs/static/probe/render.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,6 @@ window.ProbeRender = (function () {
262262
var passPct = (scoredPass / total) * 100;
263263
var warnPct = (scoredWarn / total) * 100;
264264
var failPct = (scoredFail / total) * 100;
265-
var unscoredPct = (unscored / total) * 100;
266265
var rank = i + 1;
267266

268267
html += '<div style="display:flex;align-items:center;gap:10px;">';
@@ -279,9 +278,6 @@ window.ProbeRender = (function () {
279278
if (scoredFail > 0) {
280279
html += '<div style="height:100%;width:' + failPct + '%;background:' + FAIL_BG + ';transition:width 0.3s;"></div>';
281280
}
282-
if (unscored > 0) {
283-
html += '<div style="height:100%;width:' + unscoredPct + '%;background:' + SKIP_BG + ';transition:width 0.3s;"></div>';
284-
}
285281
html += '</div>';
286282
// Score: pass + warn [fail] [unscored] / total
287283
html += '<div style="min-width:200px;text-align:right;font-size:13px;">';

0 commit comments

Comments
 (0)