Skip to content

Commit

Permalink
Fixed datatype select
Browse files Browse the repository at this point in the history
  • Loading branch information
valearna committed Dec 14, 2023
1 parent 90e9c8b commit 7b57b24
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ const SentenceClassification = () => {
<h6>Datatype</h6>
<Form.Control as="select" value={dataType}
onChange={(e) => setDataType(e.target.value)}>
<option>Expression</option>
<option>Kinase Activity</option>
<option value="expression">Expression</option>
<option value="kinase">Kinase Activity</option>
</Form.Control>
<br/>
<Button size="sm" onClick={() => {
Expand Down

0 comments on commit 7b57b24

Please sign in to comment.