Merge pull request #23062 from shariquerik/form-builder-keep-focus-on-autocomplete
This commit is contained in:
commit
bb48cbcf39
1 changed files with 3 additions and 1 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue