Let prettier change a load of things because new prettier has new rules :(
This commit is contained in:
parent
a05156407b
commit
1601bdd123
44 changed files with 218 additions and 262 deletions
|
|
@ -87,7 +87,7 @@ export default {
|
|||
/*
|
||||
* Move to the previous step in this task, or the previous task if first step.
|
||||
*/
|
||||
previousStep: function() {
|
||||
previousStep: function () {
|
||||
if (this.stepIndex > 0) {
|
||||
this.stepIndex = this.stepIndex - 1;
|
||||
} else {
|
||||
|
|
@ -98,7 +98,7 @@ export default {
|
|||
/*
|
||||
* Move to the next step in this task, or the next task if final step.
|
||||
*/
|
||||
nextStep: function() {
|
||||
nextStep: function () {
|
||||
if (this.stepIndex < this.steps.length - 1) {
|
||||
this.stepIndex = this.stepIndex + 1;
|
||||
return true;
|
||||
|
|
|
|||
|
|
@ -1,9 +1,7 @@
|
|||
<template>
|
||||
<div>
|
||||
<p>
|
||||
<b>
|
||||
Before starting camera calibration:
|
||||
</b>
|
||||
<b> Before starting camera calibration: </b>
|
||||
</p>
|
||||
<ul class="uk-list uk-list-bullet">
|
||||
<li>Remove any samples from your microscope</li>
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ export default {
|
|||
},
|
||||
|
||||
computed: {
|
||||
cameraUri: function() {
|
||||
cameraUri: function () {
|
||||
return `${this.$store.getters.baseUri}/camera/`;
|
||||
},
|
||||
},
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@ export default {
|
|||
},
|
||||
},
|
||||
|
||||
data: function() {
|
||||
data: function () {
|
||||
return {
|
||||
steps: [{ component: camCalibrationExplanation }, { component: cameraMainCalibrationStep }],
|
||||
};
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@ export default {
|
|||
},
|
||||
},
|
||||
|
||||
data: function() {
|
||||
data: function () {
|
||||
return {
|
||||
steps: [{ component: csmExplanation }, { component: focusStep }, { component: runCsmStep }],
|
||||
};
|
||||
|
|
|
|||
|
|
@ -1,12 +1,8 @@
|
|||
<template>
|
||||
<div>
|
||||
<p>Camera-stage mapping will calibrate the stage movement using the camera.</p>
|
||||
<p>
|
||||
Camera-stage mapping will calibrate the stage movement using the camera.
|
||||
</p>
|
||||
<p>
|
||||
<b>
|
||||
Before starting camera-stage mapping:
|
||||
</b>
|
||||
<b> Before starting camera-stage mapping: </b>
|
||||
</p>
|
||||
<ul class="uk-list uk-list-bullet">
|
||||
<li>Add a sample with dense features to the microscope.</li>
|
||||
|
|
|
|||
|
|
@ -1,8 +1,6 @@
|
|||
<template>
|
||||
<stepTemplateWithStream>
|
||||
<p>
|
||||
Use the buttons below to bring the sample into focus.
|
||||
</p>
|
||||
<p>Use the buttons below to bring the sample into focus.</p>
|
||||
<p>You may also adjust the z position with <b>page up</b> and <b>page down</b>.</p>
|
||||
<template #below-stream>
|
||||
<div class="action-button-container">
|
||||
|
|
|
|||
|
|
@ -3,12 +3,8 @@
|
|||
<p>
|
||||
<b>Calibration complete</b>
|
||||
</p>
|
||||
<p>
|
||||
You'll need to repeat these steps from the Settings tab if you swap your objective.
|
||||
</p>
|
||||
<p>
|
||||
Click Finish to return to your microscope.
|
||||
</p>
|
||||
<p>You'll need to repeat these steps from the Settings tab if you swap your objective.</p>
|
||||
<p>Click Finish to return to your microscope.</p>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
|
|
|||
|
|
@ -52,7 +52,7 @@ export default {
|
|||
},
|
||||
},
|
||||
|
||||
data: function() {
|
||||
data: function () {
|
||||
return {
|
||||
steps: [{ component: this.stepComponent, props: this.stepProps }],
|
||||
};
|
||||
|
|
|
|||
|
|
@ -1,9 +1,7 @@
|
|||
<template>
|
||||
<div>
|
||||
<p>
|
||||
<b>
|
||||
Some important microscope calibration data is currently missing.
|
||||
</b>
|
||||
<b> Some important microscope calibration data is currently missing. </b>
|
||||
</p>
|
||||
<p>
|
||||
Your microscope will still function, however some functionality will be limited, and image
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue