From fb109008faf2662080b8a0c59de9a153560da1e5 Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Thu, 26 May 2022 14:06:31 -0700 Subject: [PATCH] Open subscription setup in new tab --- src/js/client.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/client.js b/src/js/client.js index 0f20704a0..6ff6bb3e2 100644 --- a/src/js/client.js +++ b/src/js/client.js @@ -3029,7 +3029,7 @@ angular.module('Application').service('Client', ['$http', '$interval', '$timeout // basically the user has not setup appstore account yet if (!subscription.plan) return window.location.href = '/#/appstore'; - window.location.href = this.getConfig().consoleServerOrigin + '/#/subscription_setup/' + subscription.cloudronId; + window.open(this.getConfig().consoleServerOrigin + '/#/subscription_setup/' + subscription.cloudronId, '_blank'); }; Client.prototype.getAppstoreAppByIdAndVersion = function (appId, version, callback) {