mirror of
https://github.com/pocketbase/pocketbase.git
synced 2026-05-19 14:21:28 -04:00
updated changelog and rebuild ui/dist
This commit is contained in:
@@ -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
|
||||
|
||||
File diff suppressed because one or more lines are too long
2
ui/dist/index.html
vendored
2
ui/dist/index.html
vendored
@@ -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>
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user