Skip to content

Commit cdd83a4

Browse files
committed
Merge branch 'main' into fix/update-npm-package
2 parents 5c79669 + 0d4b361 commit cdd83a4

File tree

6 files changed

+916
-725
lines changed

6 files changed

+916
-725
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
node_modules
33
/dist
44
/.firebase
5+
package-lock.json
56

67
# local env files
78
.env.local

src/components/calibration/GeneralConfigCard.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
<p class="help-text">Give your calibration a unique identifier</p>
1212
</div>
1313
<div class="custom-outline">
14-
<Slider :value="pointNumber" :min="Number(8)" :max="Number(8)" label="Calibration Points"
14+
<Slider :value="pointNumber" :min="Number(2)" :max="Number(9)" label="Calibration Points"
1515
@input="updatePointNumber" />
16-
<p class="help-text">Number of points to calibrate (9 points recommended)</p>
16+
<p class="help-text">Number of points to calibrate (4-9 points recommended)</p>
1717

1818
<Slider :value="samplePerPoint" :min="Number(90)" :max="Number(90)" label="Samples Per Point" @input="updateSamplePerPoint" />
1919
<p class="help-text">More samples = better accuracy but longer calibration</p>

src/store/calibration.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import router from '@/router';
55
export default {
66
state: {
77
calibName: "",
8-
pointNumber: 8,
8+
pointNumber: 9,
99
samplePerPoint: 90,
1010
radius: 20,
1111
offset: 100,
@@ -135,7 +135,7 @@ export default {
135135
},
136136
resetAll(state) {
137137
state.calibName = "";
138-
state.pointNumber = 8;
138+
state.pointNumber = 9;
139139
state.samplePerPoint = 90;
140140
state.radius = 20;
141141
state.offset = 100;

0 commit comments

Comments
 (0)