Skip to content

Commit

Permalink
Fix unit selector background
Browse files Browse the repository at this point in the history
  • Loading branch information
pierotofy committed May 29, 2024
1 parent 53596c9 commit f3aa814
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 f3aa814

Please sign in to comment.