diff --git a/src/app/config.ts b/src/app/config.ts index 391d301..9bb560e 100644 --- a/src/app/config.ts +++ b/src/app/config.ts @@ -27,7 +27,7 @@ export const config = { defaultLanguage: 'text', deployProcessName: 'webservice', showDeployButton: true, - reloadIframeOnDeployButtonClick: true, + reloadIframeOnDeploy: true, showConsoleOnDeploy: true, }, terminal: { diff --git a/src/app/dashboard/dashboard.component.ts b/src/app/dashboard/dashboard.component.ts index 41d5eeb..7c8192e 100644 --- a/src/app/dashboard/dashboard.component.ts +++ b/src/app/dashboard/dashboard.component.ts @@ -50,7 +50,7 @@ export class DashboardComponent implements OnInit, OnDestroy { this.deploymentNotificationSubscription = this.deploymentNotificationService.deploying.subscribe( (deploying) => { this.deploying = deploying; - if (!deploying && config.ide.reloadIframeOnDeployButtonClick) { + if (!deploying && config.ide.reloadIframeOnDeploy) { this.reloadIframe(); } });