pull/7064/merge
tugcekucukoglu 2025-01-14 17:00:29 +03:00
parent a78276c5f3
commit 49c9303c75
1 changed files with 1 additions and 1 deletions

View File

@ -124,7 +124,7 @@ export default {
methods: { methods: {
renderValue(value) { renderValue(value) {
if (this.quill) { if (this.quill) {
if (value) this.quill.clipboard.dangerouslyPasteHTML(value); if (value) this.quill.clipboard.convert({ html: value });
else this.quill.setText(''); else this.quill.setText('');
} }
}, },