From 7d9b5b6a3cd9c7dab95d80f19ce65badb17d3afb Mon Sep 17 00:00:00 2001 From: Florian Steffens Date: Fri, 1 Sep 2023 12:32:11 +0200 Subject: [PATCH] remove unnecessary parameter Signed-off-by: Florian Steffens --- src/shared/components/ncEditor/NcEditor.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/components/ncEditor/NcEditor.vue b/src/shared/components/ncEditor/NcEditor.vue index 4c9672fa2..a388b262e 100644 --- a/src/shared/components/ncEditor/NcEditor.vue +++ b/src/shared/components/ncEditor/NcEditor.vue @@ -79,7 +79,7 @@ export default { if (value === '') { this.setupEditor() } else { - this.editor.setContent(value, true) + this.editor.setContent(value) } } },