diff --git a/caster-editor/src/components/NodeEditorCell.vue b/caster-editor/src/components/NodeEditorCell.vue index 113a9b75..31f1b02f 100644 --- a/caster-editor/src/components/NodeEditorCell.vue +++ b/caster-editor/src/components/NodeEditorCell.vue @@ -98,10 +98,6 @@ const props = defineProps<{ scriptCell: ScriptCellData; }>(); -const emit = defineEmits<{ - (e: "update:scriptCell", scriptCell: ScriptCellData): void; -}>(); - const { newScriptCellUpdates } = storeToRefs(useInterfaceStore()); const scriptCellText = computed({ @@ -111,7 +107,6 @@ const scriptCellText = computed({ set(value) { const newCell = { ...props.scriptCell }; newCell.cellCode = value; - emit("update:scriptCell", newCell); return value; }, }); diff --git a/caster-editor/src/components/ScriptCellAudio.vue b/caster-editor/src/components/ScriptCellAudio.vue index 765cbc9d..64a566bd 100644 --- a/caster-editor/src/components/ScriptCellAudio.vue +++ b/caster-editor/src/components/ScriptCellAudio.vue @@ -14,7 +14,7 @@
@@ -64,6 +64,7 @@
+