diff --git a/webapp/src/components/labThingsComponents/endpointButton.vue b/webapp/src/components/labThingsComponents/endpointButton.vue index 2b4b7eb3..5a697f59 100644 --- a/webapp/src/components/labThingsComponents/endpointButton.vue +++ b/webapp/src/components/labThingsComponents/endpointButton.vue @@ -5,7 +5,7 @@ isDisabled ? 'uk-button-disabled' : '', buttonPrimary ? 'uk-button-primary' : 'uk-button-default', ]" - :href="URL" + :href="url" download > {{ buttonLabel }} diff --git a/webapp/src/components/tabContentComponents/scanListComponents/scanCard.vue b/webapp/src/components/tabContentComponents/scanListComponents/scanCard.vue index 7b63c9d5..5c9e6ea3 100644 --- a/webapp/src/components/tabContentComponents/scanListComponents/scanCard.vue +++ b/webapp/src/components/tabContentComponents/scanListComponents/scanCard.vue @@ -31,7 +31,7 @@ class="uk-width-1-2" :button-primary="true" :is-disabled="!scanData.stitch_available" - :u-r-l="downloadStitchFile" + :url="downloadStitchFile" button-label="Download JPEG" /> diff --git a/webapp/src/components/tabContentComponents/settingsComponents/CSMSettingsComponents/CSMCalibrationSettings.vue b/webapp/src/components/tabContentComponents/settingsComponents/CSMSettingsComponents/CSMCalibrationSettings.vue index aba977ad..53c909f0 100644 --- a/webapp/src/components/tabContentComponents/settingsComponents/CSMSettingsComponents/CSMCalibrationSettings.vue +++ b/webapp/src/components/tabContentComponents/settingsComponents/CSMSettingsComponents/CSMCalibrationSettings.vue @@ -26,7 +26,7 @@ > Download Calibration Data -
+
Calibration Details CSM calculated for images with a resolution of {{ csmResolution }} diff --git a/webapp/src/components/tabContentComponents/settingsComponents/stageSettings.vue b/webapp/src/components/tabContentComponents/settingsComponents/stageSettings.vue index fc75db7f..97d8e0d3 100644 --- a/webapp/src/components/tabContentComponents/settingsComponents/stageSettings.vue +++ b/webapp/src/components/tabContentComponents/settingsComponents/stageSettings.vue @@ -3,29 +3,28 @@ The microscope stage is a {{ stageType }}
+

Your z motor is currently {{ z_inverted }} inverted.

-
- Your z motor is currently {{ this.z_inverted }} inverted. -
-
- We expect that moving in +z: + We expect that moving in +z: +

    -
  • Moves your objective up, towards the sample and illumination
  • -
  • Turns the exposed z gear anti-clockwise (when viewed from above)
  • +
  • Moves your objective up, towards the sample and illumination
  • +
  • Turns the exposed z gear anti-clockwise (when viewed from above)
- If this is not the case, click the button below to switch. +

+ If this is not the case, click the button below to switch.

- -
+ +
@@ -51,23 +50,20 @@ export default { computed: { stageType: function() { return this.thingDescription("stage").title; - } + }, }, - methods:{ + methods: { visibilityChanged(isVisible) { if (isVisible) { this.readAxis(); } }, async readAxis() { - let axes_inverted = await this.readThingProperty( - "stage", - "axis_inverted" - ); - this.z_inverted = axes_inverted['z'] ? "" : "not "; - } - } + let axes_inverted = await this.readThingProperty("stage", "axis_inverted"); + this.z_inverted = axes_inverted["z"] ? "" : "not "; + }, + }, };