diff --git a/src/components/FusionSettings/FusionLocale.vue b/src/components/FusionSettings/FusionLocale.vue index f0f1300..8516039 100644 --- a/src/components/FusionSettings/FusionLocale.vue +++ b/src/components/FusionSettings/FusionLocale.vue @@ -398,10 +398,6 @@ export default defineComponent({ }, 100); }) if(sessionStorage.FusionLocale_async)auto_sync.value=sessionStorage.FusionLocale_async=='true' - console.log("🚀 ~ file: FusionLocale.vue:401 ~ onMounted ~ sessionStorage.FusionLocale_async:", sessionStorage.FusionLocale_async) - - - }), onBeforeUnmount(() => { sessionStorage.FusionLocale = JSON.stringify(set_cache.value); @@ -553,7 +549,7 @@ export default defineComponent({ let tmpobjall = JSON.parse($store.state.fusion_configuration) if ($store.getters.GetTheCurrentlySelectedCamera[1] == 0) { - let tmp = set_cache.value[1].array == null ? tmpobjall.projectors[1].params : JSON.parse(set_cache.value[1]).array; + let tmp = set_cache.value[1] == null ? tmpobjall.projectors[1].params : JSON.parse(set_cache.value[1]); let set_cache_tmp: any = [] if (tmp[1].hasOwnProperty("power")) { for (let index = 0; index < 4; index++) { diff --git a/src/components/FusionSettingsDialog.vue b/src/components/FusionSettingsDialog.vue index 45cd13f..6a0efdc 100644 --- a/src/components/FusionSettingsDialog.vue +++ b/src/components/FusionSettingsDialog.vue @@ -172,7 +172,7 @@
{{ $t('Do you confirm the modification') }}
- {{ $t('Whether to delete') + name_to_be_deleted }} + {{ $t('Do you confirm the modification') }} @@ -470,7 +470,7 @@ export default defineComponent({ if (config.value.col == 1 && config.value.row == 1) { optionsstr.value = "FourPointCalibration" } else { - optionsstr.value = "FusionLocale"; + optionsstr.value = "FourPointCalibration"; } };