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 e51add5 commit bdbe551Copy full SHA for bdbe551
lib/src/controller/web/quill_controller_web_real.dart
@@ -5,6 +5,7 @@ import 'dart:async' show StreamSubscription;
5
import 'package:web/web.dart';
6
7
import '../quill_controller.dart';
8
+// ignore: unused_import
9
import '../quill_controller_rich_paste.dart';
10
11
/// Paste event for the web.
@@ -23,7 +24,9 @@ extension QuillControllerWeb on QuillController {
23
24
if (html == null) {
25
return;
26
}
- pasteHTML(html: html);
27
+ // TODO: Temporarily disable the rich text pasting feature as a workaround
28
+ // due to issue https://github.com/singerdmx/flutter-quill/issues/2220
29
+ // pasteHTML(html: html);
30
});
31
32
0 commit comments