Konstantin Zhukov

Results 2 comments of Konstantin Zhukov

I've solved it a such way: [source](https://quilljs.com/docs/api#events) ``` // remove blobs: quill.on("text-change", (delta, oldDelta, source) => { if (source !== "user") return; let containsBlobImage = false; delta.ops.forEach((op) => { if...

I'm waiting for the fix too. As a temporary solution, I created a wrapper component around the `DatePicker`, where I access the clear button and its `actionCallback` using named templates....