This is an automated email from the ASF dual-hosted git repository. heneveld pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/brooklyn-ui.git
commit da225d35db7425e086ea9097a03b5da4f56fd0ac Author: Mykola Mandra <[email protected]> AuthorDate: Wed Jun 23 13:43:55 2021 +0100 Fix the relationship label of the Object config key type Signed-off-by: Mykola Mandra <[email protected]> --- .../app/components/providers/blueprint-service.provider.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui-modules/blueprint-composer/app/components/providers/blueprint-service.provider.js b/ui-modules/blueprint-composer/app/components/providers/blueprint-service.provider.js index c134092..e7e2a62 100644 --- a/ui-modules/blueprint-composer/app/components/providers/blueprint-service.provider.js +++ b/ui-modules/blueprint-composer/app/components/providers/blueprint-service.provider.js @@ -79,7 +79,7 @@ function BlueprintService($log, $q, $sce, paletteApi, iconGenerator, dslService, .reduce((set, objectKey) => { config[key].relationships.forEach((entity)=> { if (entity !== null) { - set.add({entity: entity, name: objectKey}); + set.add({entity: entity, name: key}); } }); return set;
