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