Skip to content

Commit

Permalink
removing number type from text field
Browse files Browse the repository at this point in the history
  • Loading branch information
katiestahl committed Aug 14, 2024
1 parent 7316381 commit 3b097b5
Showing 1 changed file with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import {
Link,
InputLabel,
FormControl,
CircularProgress,
} from "@material-ui/core";
import React, { useEffect, useState } from "react";
import { GeneAutocomplete } from "../../main/shared/GeneAutocomplete/GeneAutocomplete";
Expand Down Expand Up @@ -333,15 +332,13 @@ const GetCoordinates: React.FC = () => {
{genomicCoordinateInfo}
<Box className={classes.fieldsPair}>
<TextField
type="number"
margin="dense"
label="Genomic Start"
value={start}
onChange={(event) => setStart(event.target.value)}
helperText={start ? startText : ""}
/>
<TextField
type="number"
margin="dense"
label="Genomic End"
value={end}
Expand All @@ -362,7 +359,6 @@ const GetCoordinates: React.FC = () => {
</Box>
<Box className={classes.fieldsPair}>
<TextField
type="number"
margin="dense"
style={{ minWidth: 125 }}
label="Starting Exon"
Expand All @@ -372,7 +368,6 @@ const GetCoordinates: React.FC = () => {
helperText={exonStart ? exonStartText : ""}
/>
<TextField
type="number"
margin="dense"
style={{ minWidth: 125 }}
label="Starting Offset"
Expand All @@ -382,7 +377,6 @@ const GetCoordinates: React.FC = () => {
</Box>
<Box className={classes.fieldsPair}>
<TextField
type="number"
margin="dense"
style={{ minWidth: 125 }}
label="Ending Exon"
Expand All @@ -392,7 +386,6 @@ const GetCoordinates: React.FC = () => {
helperText={exonEnd ? exonEndText : ""}
/>
<TextField
type="number"
margin="dense"
style={{ minWidth: 125 }}
label="Ending Offset"
Expand Down

0 comments on commit 3b097b5

Please sign in to comment.