algairim commented on a change in pull request #241:
URL: https://github.com/apache/brooklyn-ui/pull/241#discussion_r666379029



##########
File path: 
ui-modules/blueprint-composer/app/components/providers/blueprint-service.provider.js
##########
@@ -554,6 +564,24 @@ function BlueprintService($log, $q, $sce, paletteApi, 
iconGenerator, dslService,
         }, []));
     }
 
+    function refreshConfigInherited(entity) {
+        return $q((resolve) => {
+            entity.miscData.get('config')
+                .filter(definition => !entity.config.has(definition.name))
+                .forEach(definition => {
+                    if (entity.hasInheritedConfig(definition.name)) {
+                        entity.addIssue(Issue.builder()
+                            .group('config')
+                            .ref(definition.name)
+                            .level(ISSUE_LEVEL.WARN)
+                            .message(`Implicitly defined from one of it's 
ancestor`)

Review comment:
       typo: _...one of its ancestors_.




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to