Skip to content

Commit c0220e9

Browse files
ejmccalla4607claude
andcommitted
Fix broken cellClass in picklist.html causing SyntaxError
Missing closing brace left the function unclosed. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 29ef900 commit c0220e9

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

webapp/picklist.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,10 @@ <h1 id="page-title">Picklist</h1>
216216
if (!d || isNaN(n) || val === '') return '';
217217
// Lower is better for fouls only; drive/defense rank higher = better
218218
if (col === 'foulPoints') {
219+
if (n <= d.p25) return 'c-green';
220+
if (n >= d.p75) return 'c-red';
221+
return 'c-mid';
222+
}
219223
if (n >= d.p75) return 'c-green';
220224
if (n <= d.p25) return 'c-red';
221225
return 'c-mid';

0 commit comments

Comments
 (0)