From 399f78db8cf6412a6708c67dae05b5f5fef6da19 Mon Sep 17 00:00:00 2001 From: widlam Date: Wed, 28 Jun 2023 15:04:03 +0200 Subject: [PATCH] fixed bug --- Frontend/src/components/xml/XmlInputFieldComponent.vue | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Frontend/src/components/xml/XmlInputFieldComponent.vue b/Frontend/src/components/xml/XmlInputFieldComponent.vue index c7b7daf..c0f78a1 100644 --- a/Frontend/src/components/xml/XmlInputFieldComponent.vue +++ b/Frontend/src/components/xml/XmlInputFieldComponent.vue @@ -19,6 +19,11 @@ function sendValue() { emit('update', data.value) } +function sendNewValue(newValue : string) { + data.value = newValue + emit('update', data.value) +} + function updateData(newData: string) { data.value = newData; sendValue(); @@ -47,6 +52,6 @@ function canBeFormatted() { - + \ No newline at end of file