We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9815ab commit c37280eCopy full SHA for c37280e
src/components/operation.js
@@ -348,7 +348,7 @@ function checkFeedRateRange(axis) {
348
},
349
error: (v, settings) => {
350
let { min, max } = Object.assign(SETTINGS_INITIALSTATE.machineFeedRange, settings.machineFeedRange)[axis];
351
- if (isNaN(min) || isNan(max))
+ if (isNaN(min) || isNaN(max))
352
return 'Check settings/machine first!';
353
return 'Must be in range [' + min + ' , ' + max + ']'
354
}
0 commit comments