We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cfc1a95 commit e76b0e6Copy full SHA for e76b0e6
addons/mass_mailing_egg/static/src/builder/plugins/dropzone_plugin.js
@@ -1,4 +1,5 @@
1
import { Plugin } from "@html_editor/plugin";
2
+import { isPhrasingContent } from "@html_editor/utils/dom_info";
3
import { registry } from "@web/core/registry";
4
5
class DropzonePlugin extends Plugin {
@@ -47,6 +48,7 @@ class DropzonePlugin extends Plugin {
47
48
dropNear: ".row:not(.s_col_no_resize) > div",
49
},
50
],
51
+ filter_for_sibling_dropzone_predicates: (el) => isPhrasingContent(el),
52
};
53
54
get noOptionsSelector() {
0 commit comments