From 99fd62e274307a34d0591e985799367ac9c91143 Mon Sep 17 00:00:00 2001 From: Johannes Hoermann <j.hoermann@adito.de> Date: Mon, 26 Aug 2019 12:53:22 +0200 Subject: [PATCH] fix attribute-Objectselection-Type --- process/Attribute_lib/process.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/process/Attribute_lib/process.js b/process/Attribute_lib/process.js index d5e2fe99b1..bf1f322fba 100644 --- a/process/Attribute_lib/process.js +++ b/process/Attribute_lib/process.js @@ -1,4 +1,3 @@ -import("system.logging"); import("KeywordData_lib"); import("Context_lib"); import("system.util"); @@ -799,7 +798,7 @@ $AttributeTypes.OBJECTSELECTION = { project.getDataModels(project.DATAMODEL_KIND_ENTITY).forEach( function (entity) { - if (entity[1] && this._selectableEntities[entity[0]]) + if (entity[1] && $AttributeTypes.OBJECTSELECTION._selectableEntities[entity[0]]) dropDownList.push([entity[0], translate.text(entity[1])]); } ); -- GitLab