This is an automated email from the ASF dual-hosted git repository. tbouron pushed a commit to branch tbouron-patch-2 in repository https://gitbox.apache.org/repos/asf/brooklyn-ui.git
commit 598a958e57e457e5a85e145a6e0132df37dbf19e Author: Thomas Bouron <[email protected]> AuthorDate: Tue Jan 12 14:01:41 2021 +0000 Use the correct AngularJs module name for blueprint importer Currently, it will throw an error when the module is started, making it unusable. --- ui-modules/blueprint-importer/app/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui-modules/blueprint-importer/app/index.html b/ui-modules/blueprint-importer/app/index.html index bb58eee..be5fd2f 100644 --- a/ui-modules/blueprint-importer/app/index.html +++ b/ui-modules/blueprint-importer/app/index.html @@ -25,7 +25,7 @@ <link rel="icon" type="image/png" href="${require('!!file-loader!<%= brand.product.favicon %>')}"/> <title><%= getBrandedText('product.name') %> - <%= app.appname %></title> </head> - <body ng-app="brooklynBlueprintComposer" br-server-status ng-strict-di> + <body ng-app="brooklynBlueprintImporter" br-server-status ng-strict-di> ${require('ejs-html!brooklyn-shared/partials/header.html')} <main class="page-main-area" id="main-content" ui-view ng-cloak></main>
