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 83500d2665fb3fbd7fa1f68263c1c7bcc4413472 Author: Mykola Mandra <[email protected]> AuthorDate: Thu Sep 16 17:27:23 2021 +0100 Remove redundant null asignment to confirmationElement Signed-off-by: Mykola Mandra <[email protected]> --- ui-modules/blueprint-composer/app/components/util/d3-blueprint.js | 1 - ui-modules/blueprint-composer/package.json | 3 ++- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ui-modules/blueprint-composer/app/components/util/d3-blueprint.js b/ui-modules/blueprint-composer/app/components/util/d3-blueprint.js index f4fedeb..86065d5 100755 --- a/ui-modules/blueprint-composer/app/components/util/d3-blueprint.js +++ b/ui-modules/blueprint-composer/app/components/util/d3-blueprint.js @@ -1332,7 +1332,6 @@ export function D3Blueprint(container, options) { } } confirmationElement.remove(); - confirmationElement = null; } else { // NOOP. The user user clicks on the 'X' button or elsewhere on the canvas to close the menu. } diff --git a/ui-modules/blueprint-composer/package.json b/ui-modules/blueprint-composer/package.json index e2b34d9..381e14e 100644 --- a/ui-modules/blueprint-composer/package.json +++ b/ui-modules/blueprint-composer/package.json @@ -30,7 +30,8 @@ "start": "node ./config/server.js", "test": "karma start ./config/test/karma.config.js", "lint": "./node_modules/.bin/eslint app/**/*.js", - "e2e": "protractor ./config/test/protractor.config.js" + "e2e": "protractor ./config/test/protractor.config.js", + "branding": "BROOKLYN_UI_BRAND_DIR=/Users/mykola/IdeaProjects/cloudpack-megan/package/branding npm run start" }, "engines": { "node": ">=8.0.0",
