File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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;">' ;
You can’t perform that action at this time.
0 commit comments