Skip to content

Commit

Permalink
Merge pull request #1509 from pierotofy/units
Browse files Browse the repository at this point in the history
Fix unit selector background color
  • Loading branch information
pierotofy committed May 29, 2024
2 parents 79434e4 + f3aa814 commit 5231bac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/static/app/js/components/UnitSelector.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class UnitSelector extends React.Component {

render() {
return (
<select className="unit-selector" value={this.state.system} onChange={this.handleChange}>
<select className="unit-selector theme-secondary" value={this.state.system} onChange={this.handleChange}>
{Object.keys(systems).map(k =>
<option value={k} key={k}>{systems[k].getName()}</option>)}
</select>
Expand Down

0 comments on commit 5231bac

Please sign in to comment.