Merge pull request #23062 from shariquerik/form-builder-keep-focus-on-autocomplete

This commit is contained in:
Shariq Ansari 2023-11-02 13:04:02 +05:30 committed by GitHub
commit bb48cbcf39
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,7 +12,9 @@ let should_render = computed(() => {
});
let container = ref(null);
onClickOutside(container, () => (store.form.selected_field = null));
onClickOutside(container, () => (store.form.selected_field = null), {
ignore: [".combo-box-options"],
});
watch(
() => store.form.layout,