Github user aledsage commented on a diff in the pull request:
https://github.com/apache/brooklyn-ui/pull/69#discussion_r217351558
--- Diff:
ui-modules/blueprint-composer/app/components/spec-editor/spec-editor.directive.js
---
@@ -357,6 +357,13 @@ export function specEditorDirective($rootScope,
$templateCache, $injector, $sani
return issues.some(issue => issue.level === ISSUE_LEVEL.ERROR)
? 'badge-danger' : 'badge-warning';
};
+ function baseType(s) {
--- End diff --
Do we need to declare `function baseType` here as well, given that we have
the import `baseType` from `../util/model/entity.model` as well?
---