fixed class name value

This commit is contained in:
Theenoro
2019-08-17 15:44:34 +02:00
parent 6a929b51be
commit bcf8fc8acf
2 changed files with 10 additions and 5 deletions

View File

@@ -161,7 +161,7 @@ export class Main extends React.Component{
<select className="select-wrapper" onChange={this.selCh} value={this.state.selected} title="Gruppe auswählen">
<option value="-">-</option>
{this.state.classes.map((cl,i)=>
<option value={cl.toLowerCase()}>{cl.toUpperCase()}</option>
<option value={cl}>{cl.toUpperCase()}</option>
)}
</select>
</div>