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

@@ -6,7 +6,7 @@
- Fixed SMTP IPv6 network address format ([#7659](https://github.com/pocketbase/pocketbase/issues/7659)).
- Fixed rule autocomplete not firing the related input event ([#7664](https://github.com/pocketbase/pocketbase/issues/7664)).
- Fixed autocomplete selection not properly updating the underlying input value ([#7664](https://github.com/pocketbase/pocketbase/issues/7664)).
## v0.37.3

View File

File diff suppressed because one or more lines are too long

2
ui/dist/index.html vendored
View File

@@ -13,7 +13,7 @@
<!-- prism -->
<script src="./libs/prism/prism.js" data-manual></script>
<script type="module" crossorigin src="./assets/index-b7Yb7F-I.js"></script>
<script type="module" crossorigin src="./assets/index-BwS_u5KM.js"></script>
<link rel="modulepreload" crossorigin href="./assets/pocketbase.es-B_4DUNUU.js">
<link rel="stylesheet" crossorigin href="./assets/index-DxJmEXiH.css">
</head>

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;