Skip to content

Commit

Permalink
Merge pull request frappe#23062 from shariquerik/form-builder-keep-fo…
Browse files Browse the repository at this point in the history
…cus-on-autocomplete
  • Loading branch information
shariquerik authored Nov 2, 2023
2 parents 66b825c + cc87e5d commit bb48cbc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion frappe/public/js/form_builder/FormBuilder.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit bb48cbc

Please sign in to comment.