diff --git a/src/components/RegisterDialog.vue b/src/components/RegisterDialog.vue index 13cfbe2..dd53f63 100644 --- a/src/components/RegisterDialog.vue +++ b/src/components/RegisterDialog.vue @@ -237,7 +237,7 @@ - + {{ $t("active time") }} @@ -257,7 +257,7 @@ - + {{ $t("function") }} @@ -291,7 +291,7 @@ - +
@@ -307,7 +307,7 @@ - + {{ $t("language") }} @@ -465,18 +465,13 @@ export default defineComponent({ show_dialog.value = false; } - const function_custom_ISV = ref( - $store.state.custom_defines.is_custom_isv - ); - const function_center_control = ref( - $store.state.custom_defines.function_center_control - ); - const function_output_board = ref( - $store.state.custom_defines.function_output_board - ); - const function_mirroring_output = ref( - $store.state.custom_defines.function_mirroring_output - ); + function_custom_ISV.value = $store.state.custom_defines.is_custom_isv; + function_center_control.value = + $store.state.custom_defines.function_center_control; + function_output_board.value = + $store.state.custom_defines.function_output_board; + function_mirroring_output.value = + $store.state.custom_defines.function_mirroring_output; }; return {