Skip to content

Commit

Permalink
Fix contenType event not firing on non-Quill editor mode
Browse files Browse the repository at this point in the history
  • Loading branch information
knadh committed Jan 31, 2021
1 parent 27d9eab commit bb1a5bb
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions frontend/src/components/Editor.vue
Expand Up @@ -244,6 +244,8 @@ export default {
this.form.body = b;
this.$emit('input', { contentType: this.form.format, body: this.form.body });
});
this.isReady = true;
},
onTogglePreview() {
Expand Down Expand Up @@ -288,6 +290,7 @@ export default {
body(b) {
this.form.body = b;
this.onEditorChange();
},
htmlFormat(f) {
Expand Down

0 comments on commit bb1a5bb

Please sign in to comment.