Skip to content

Commit

Permalink
Migration fix for probe profile
Browse files Browse the repository at this point in the history
  • Loading branch information
kglovern committed Feb 22, 2024
1 parent ae7156e commit df26d0e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/app/store/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -265,8 +265,8 @@ const migrateStore = () => {
if (typeof storeProbe.xyThickness === 'object' && storeProbe.xyThickness.mm) {
store.replace('workspace.probeProfile', {
...defaultProbe,
xyThickness: settings.workspace.probeProfile.xyThickness.mm,
zThickness: settings.workspace.probeProfile.zThickness.mm,
xyThickness: storeProbe.xyThickness.mm,
zThickness: storeProbe.zThickness.mm,
});
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/server/controllers/Grbl/GrblController.js
Original file line number Diff line number Diff line change
Expand Up @@ -923,7 +923,7 @@ class GrblController {
isIdle: () => {
if (!this.runner) {
return false;
};
}
return this.runner.isIdle();
},
intervalTimer: 200
Expand Down

0 comments on commit df26d0e

Please sign in to comment.