This repository was archived by the owner on Mar 11, 2020. It is now read-only.

Description
The problem is here:
ngOnChanges(changes: SimpleChanges) {
if (changes['readOnly'] && this.quillEditor) {
this.quillEditor.enable(!changes['readOnly'].currentValue);
}
}
This solution works for me:
ngOnChanges(changes: SimpleChanges) {
if (!changes.options || changes.options.firstChange || !this.quillEditor)
return
this.quillEditor.enable(!changes.options.currentValue.readOnly);
}