Skip to content

Commit

Permalink
Fix for max value in spindle RPM
Browse files Browse the repository at this point in the history
  • Loading branch information
kglovern committed Jul 8, 2024
1 parent 37c0986 commit fc55ece
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gSender",
"version": "1.4.8-internal1",
"version": "1.4.8-internal2",
"description": "Electron sender for GRBL based CNC machines",
"author": {
"name": "Sienci Labs <hi@sienci.com>",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ const InputArea = () => {

<Input
label="Spindle RPM"
additionalProps={{ type: 'number', id: 'spindleRPM', step: 1, min: 0.01, max: 1000, style: { ...inputStyles } }}
additionalProps={{ type: 'number', id: 'spindleRPM', step: 1, min: 0.01, max: 30000, style: { ...inputStyles } }}
value={spindleRPM}
onChange={handleChange}
tooltip={{ content: `Default Value: ${defaultValues.spindleRPM}` }}
Expand Down

0 comments on commit fc55ece

Please sign in to comment.