From 420912701e1c53752d73f1da01d6cee9f8d43a1f Mon Sep 17 00:00:00 2001
From: Volker Schukai <volker.schukai@schukai.com>
Date: Tue, 21 Feb 2023 16:55:04 +0100
Subject: [PATCH] fix: add empty strings

---
 application/source/data/transformer.mjs | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/application/source/data/transformer.mjs b/application/source/data/transformer.mjs
index 45945146b..4e9fe3fe8 100644
--- a/application/source/data/transformer.mjs
+++ b/application/source/data/transformer.mjs
@@ -406,8 +406,9 @@ function transform(value) {
                     throw new Error("missing key parameter");
                 }
                 
+                // add empty strings
                 if (isString(key)&&key.trim()==="") {
-                    concat += key;
+                    concat += key; 
                     continue;
                 }
                 
-- 
GitLab