You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I create a bloc using this, the drawer open on right, I add a layout, then a bloc "heading" in first col, and I type my title, but I can't make space (See video bellow, I tried to type "Lorem Ipsum Dolor Sit Amet")
If I come back in my text, i'm able to add space, but it's pretty annoying.
Looking at your code source, I've could "resolve" the bug by adding a condition to not $emit('update') event if we are in drawer
on: {
"input": function ($event) {
if(!document.querySelector('.k-drawer')) {
_vm.$emit("update", $event)
}
}
}
Yes, it's a pretty ugly hack, I imagine it could be done better and I made it directly in compiled javascript code... 😬, I didn't have too much time to look at it.. But maybe these clues can help you resolve it.
Have a good day, sorry for my english ;)
The text was updated successfully, but these errors were encountered:
Hello,
Thank a lot for your plugin it save me a lot of time.
I've just noticed a strange bug:
If I come back in my text, i'm able to add space, but it's pretty annoying.
Enregistrement.de.l.ecran.2022-10-18.a.15.24.58.mp4.mp4
Looking at your code source, I've could "resolve" the bug by adding a condition to not
$emit('update')
event if we are in drawerYes, it's a pretty ugly hack, I imagine it could be done better and I made it directly in compiled javascript code... 😬, I didn't have too much time to look at it.. But maybe these clues can help you resolve it.
Have a good day, sorry for my english ;)
The text was updated successfully, but these errors were encountered: