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 1e1f7281320f2f193010535e8b440ea593e7e9e8 Author: zan-mateusz <[email protected]> AuthorDate: Wed Sep 15 15:57:18 2021 +0100 minor refactor --- ui-modules/utils/quick-launch/quick-launch.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ui-modules/utils/quick-launch/quick-launch.js b/ui-modules/utils/quick-launch/quick-launch.js index 5540988..b8982b0 100644 --- a/ui-modules/utils/quick-launch/quick-launch.js +++ b/ui-modules/utils/quick-launch/quick-launch.js @@ -150,8 +150,7 @@ export function quickLaunchDirective() { function deployApp() { $scope.deploying = true; - let useExtensions = $scope.app.plan.format.includes('camp') ? false : true; - Promise.resolve(quickLaunch.buildYaml(useExtensions)) + Promise.resolve(quickLaunch.buildYaml($scope.app.plan.format.includes('camp') ? false : true)) .then(appYaml => { quickLaunch.planSender(appYaml) .then((response) => {
