Skip to content

Commit

Permalink
Light gray.
Browse files Browse the repository at this point in the history
  • Loading branch information
emeryberger committed Aug 1, 2019
1 parent 124694e commit b930a07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ function makeTable(sheetName: string, arr, selector, current: number, numFixes :
if (Math.round(score) < 50) {
barColor = 'yellow';
}
children.push(<tr style={lineStyle} onClick={(ev) => { ev.preventDefault(); selector(i); }}>{rangeDisplay}<td title={scoreStr} style={{width: Math.round(score), backgroundColor: barColor, display:'inline-block'}}>&nbsp;</td><td style={{width: barWidth-Math.round(score), backgroundColor: 'gray', display:'inline-block'}}>&nbsp;</td></tr>);
children.push(<tr style={lineStyle} onClick={(ev) => { ev.preventDefault(); selector(i); }}>{rangeDisplay}<td title={scoreStr} style={{width: Math.round(score), backgroundColor: barColor, display:'inline-block'}}>&nbsp;</td><td style={{width: barWidth-Math.round(score), backgroundColor: 'lightgray', display:'inline-block'}}>&nbsp;</td></tr>);
}
}
if (counter > 0) {
Expand Down

0 comments on commit b930a07

Please sign in to comment.