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 dc090cb commit 40760b5Copy full SHA for 40760b5
core/core-frontend/src/components/data-visualization/canvas/ComponentWrapper.vue
@@ -173,7 +173,11 @@ const handleInnerMouseDown = e => {
173
e?.stopPropagation()
174
e?.preventDefault()
175
}
176
- if (['popEdit', 'preview'].includes(showPosition.value) || dvMainStore.mobileInPc) {
+ if (
177
+ (!['rich-text'].includes(config.value.innerType) &&
178
+ ['popEdit', 'preview'].includes(showPosition.value)) ||
179
+ dvMainStore.mobileInPc
180
+ ) {
181
onClick(e)
182
if (e.target?.className?.includes('ed-input__inner')) return
183
0 commit comments