Skip to content

Commit

Permalink
chore(web): fix delimited layer input field type (#695)
Browse files Browse the repository at this point in the history
  • Loading branch information
pyshx committed Sep 19, 2023
1 parent b2992da commit fa36274
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -81,15 +81,15 @@ const DelimitedText: React.FC<DataProps> = ({ sceneId, onSubmit, onClose }) => {
<Text size="body">Point coordinates</Text>
<InputGroup label="Latitude Field" description="Description around">
<Input
type="number"
type="text"
placeholder="Input Text"
value={lat}
onChange={e => setLat(e.target.value)}
/>
</InputGroup>
<InputGroup label="Longitude Field" description="Description around">
<Input
type="number"
type="text"
placeholder="Input Text"
value={long}
onChange={e => setLong(e.target.value)}
Expand Down

0 comments on commit fa36274

Please sign in to comment.