diff --git a/core/core-frontend/src/components/collapse-switch-item/src/CollapseSwitchItem.vue b/core/core-frontend/src/components/collapse-switch-item/src/CollapseSwitchItem.vue index 6525f6c522..c9ab2a9d91 100644 --- a/core/core-frontend/src/components/collapse-switch-item/src/CollapseSwitchItem.vue +++ b/core/core-frontend/src/components/collapse-switch-item/src/CollapseSwitchItem.vue @@ -19,7 +19,7 @@ const emit = defineEmits(['update:modelValue', 'modelChange']) const { changeModel, title, themes } = toRefs(props) const collapseItem = ref() -const onSwitchChange = e => { +const onSwitchChange = () => { emit('modelChange', changeModel.value) if (!props.modelValue && !collapseItem.value.isActive) { collapseItem.value.handleHeaderClick() diff --git a/core/core-frontend/src/components/custom-password/src/CustomPassword.vue b/core/core-frontend/src/components/custom-password/src/CustomPassword.vue index efd997402d..c12e47a0e1 100644 --- a/core/core-frontend/src/components/custom-password/src/CustomPassword.vue +++ b/core/core-frontend/src/components/custom-password/src/CustomPassword.vue @@ -1,5 +1,5 @@