updated changelog and rebuild ui/dist

This commit is contained in:
Gani Georgiev
2026-04-24 22:27:26 +03:00
parent b5030ddfa1
commit 1e460d3f96
4 changed files with 5 additions and 5 deletions

View File

@@ -123,8 +123,8 @@ window.app.components.codeEditor = function(propsArg = {}) {
function updateValue(newVal) {
props.value = newVal;
props.oninput?.(props.value);
editorContent.dispatchEvent(new CustomEvent("change", { detail: props.value }));
props.oninput?.(newVal);
editorContent.dispatchEvent(new CustomEvent("change", { detail: newVal }));
}
let isCtrlOrCmdKey = false;