ui_migration lint(fix): changes fixed with lint ecmaversion & es2021

This commit is contained in:
Antonio Anaya 2026-02-15 01:03:29 -06:00
parent 0741e3cf7e
commit ce19ea3fc0
52 changed files with 242 additions and 193 deletions

View file

@ -25,7 +25,7 @@ export default {
components: {
CSMCalibrationSettings,
miniStreamDisplay
miniStreamDisplay,
},
};
</script>

View file

@ -66,7 +66,7 @@ export default {
components: {
ActionButton,
matrixDisplay
matrixDisplay,
},
props: {
@ -77,6 +77,8 @@ export default {
},
},
emits: ["recalibrateResponse"],
data() {
return {
csmMatrix: undefined,
@ -101,7 +103,7 @@ export default {
([{ isIntersecting }]) => {
this.visibilityChanged(isIntersecting);
},
{ threshold: 0.0 }
{ threshold: 0.0 },
);
},

View file

@ -34,7 +34,7 @@ export default {
components: {
cameraCalibrationSettings,
miniStreamDisplay,
ServerSpecifiedPropertyControl
ServerSpecifiedPropertyControl,
},
data() {

View file

@ -23,14 +23,13 @@
<script>
import ServerSpecifiedActionButton from "../../../labThingsComponents/serverSpecifiedActionButton.vue";
// vue3 migration
import { markRaw } from "vue";
// Export main app
export default {
name: "CameraCalibrationSettings",
components: {
ServerSpecifiedActionButton
ServerSpecifiedActionButton,
},
props: {
@ -45,6 +44,8 @@ export default {
},
},
emits: ["actionFinished"],
data() {
return {
primaryCalibrationActions: [],

View file

@ -15,7 +15,7 @@ export default {
components: {
streamSettings,
appSettings
appSettings,
},
};
</script>

View file

@ -36,7 +36,7 @@ export default {
name: "StageSettings",
components: {
ActionButton
ActionButton,
},
data: function () {
@ -57,7 +57,7 @@ export default {
([{ isIntersecting }]) => {
this.visibilityChanged(isIntersecting);
},
{ threshold: 0.0 }
{ threshold: 0.0 },
);
},