From b2ada29db25b9b63bd980437f21acaa57710d588 Mon Sep 17 00:00:00 2001 From: Sebastian Listl <s.listl@adito.de> Date: Fri, 5 Feb 2021 16:20:33 +0000 Subject: [PATCH] missing variable declaration added --- entity/Contact_entity/afterUiInit.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entity/Contact_entity/afterUiInit.js b/entity/Contact_entity/afterUiInit.js index 683cf850e6..e4d2f842cd 100644 --- a/entity/Contact_entity/afterUiInit.js +++ b/entity/Contact_entity/afterUiInit.js @@ -20,7 +20,7 @@ if(vars.get("$sys.operatingstate") == neon.OPERATINGSTATE_NEW) .where("AB_ATTRIBUTERELATION.OBJECT_ROWID", contactId) .table(); - for (i = 0; i < attributes.length; i++) { + for (let i = 0; i < attributes.length; i++) { neon.addRecord("Attributes", { "AB_ATTRIBUTE_ID" : attributes[i][0], "VALUE" : attributes[i][1] -- GitLab