diff --git a/src/components/input/editor.vue b/src/components/input/editor.vue index f3a3ff2af..652f1b770 100644 --- a/src/components/input/editor.vue +++ b/src/components/input/editor.vue @@ -54,6 +54,10 @@ type: Boolean, default: true, }, + previewIsDefault: { + type: Boolean, + default: true, + }, }, data() { return { @@ -210,8 +214,11 @@ }, beforeMount() { this.text = this.value - if (this.hasPreview) { - this.$nextTick(this.renderPreview) + + if (this.previewIsDefault) { + if (this.hasPreview) { + this.$nextTick(this.renderPreview) + } return } diff --git a/src/views/labels/ListLabels.vue b/src/views/labels/ListLabels.vue index ab9cab024..3056627db 100644 --- a/src/views/labels/ListLabels.vue +++ b/src/views/labels/ListLabels.vue @@ -58,7 +58,7 @@