Skip to content

Commit

Permalink
Up. Typo!
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgerobles committed May 4, 2018
1 parent e9815ab commit c37280e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/operation.js
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ function checkFeedRateRange(axis) {
},
error: (v, settings) => {
let { min, max } = Object.assign(SETTINGS_INITIALSTATE.machineFeedRange, settings.machineFeedRange)[axis];
if (isNaN(min) || isNan(max))
if (isNaN(min) || isNaN(max))
return 'Check settings/machine first!';
return 'Must be in range [' + min + ' , ' + max + ']'
}
Expand Down

0 comments on commit c37280e

Please sign in to comment.