mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-05-05 13:35:52 +02:00
fix(frontend): fix build error (#17050)
This commit is contained in:
@@ -68,10 +68,10 @@ const emit = defineEmits<{
|
||||
|
||||
const dialog = useTemplateRef('dialog');
|
||||
|
||||
const settings = reactive<Record<string, any>>(deepClone(props.currentSettings));
|
||||
const settings = ref<Record<string, any>>(deepClone(props.currentSettings));
|
||||
|
||||
function save() {
|
||||
emit('saved', deepClone(settings));
|
||||
emit('saved', deepClone(settings.value));
|
||||
dialog.value?.close();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user