pull/971/head
Jon Salmon 3 years ago committed by GitHub
parent 38ef599304
commit 1f42da82fb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      CHANGELOG.md
  2. 5
      lib/src/widgets/editor.dart
  3. 2
      pubspec.yaml

@ -1,3 +1,6 @@
# [6.0.6+1]
* Revert 6.0.6
# [6.0.6]
* Fix wrong custom embed key.

@ -521,15 +521,14 @@ class QuillEditorState extends State<QuillEditor>
if (builders != null) {
var _node = node;
final type = node.value.type;
// Creates correct node for custom embed
if (type == BlockEmbed.customType) {
if (node.value.type == BlockEmbed.customType) {
_node = Embed(CustomBlockEmbed.fromJsonString(node.value.data));
}
for (final builder in builders) {
if (builder.key == type) {
if (builder.key == _node.value.type) {
return builder.build(context, controller, _node, readOnly);
}
}

@ -1,6 +1,6 @@
name: flutter_quill
description: A rich text editor supporting mobile and web (Demo App @ bulletjournal.us)
version: 6.0.6
version: 6.0.6+1
#author: bulletjournal
homepage: https://bulletjournal.us/home/index.html
repository: https://github.com/singerdmx/flutter-quill

Loading…
Cancel
Save