diff --git a/vue_frontend/src/components/TextNode.vue b/vue_frontend/src/components/TextNode.vue
index b52b50d7..5aa93b8c 100644
--- a/vue_frontend/src/components/TextNode.vue
+++ b/vue_frontend/src/components/TextNode.vue
@@ -6,9 +6,18 @@
@@ -48,6 +57,7 @@ export default {
props: {
item: Object,
editorShow: Boolean,
+ plainEditShow: Boolean,
create: Boolean,
where: String,
refnode: Object
@@ -58,6 +68,7 @@ export default {
this.currentText = "";
this.originalText = "";
this.editorShow = true;
+ this.plainEditShow = false;
} else {
this.currentText = this.item.node.text.na_web;
this.originalText = this.item.node.text.na_web;