Rename config.ide.reloadIframeOnDeploy.. to match new options

This commit is contained in:
Kristóf Tóth 2018-05-27 19:10:22 +02:00
parent 3af98a0c19
commit ce192891d8
2 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@ export const config = {
defaultLanguage: 'text', defaultLanguage: 'text',
deployProcessName: 'webservice', deployProcessName: 'webservice',
showDeployButton: true, showDeployButton: true,
reloadIframeOnDeployButtonClick: true, reloadIframeOnDeploy: true,
showConsoleOnDeploy: true, showConsoleOnDeploy: true,
}, },
terminal: { terminal: {

View File

@ -50,7 +50,7 @@ export class DashboardComponent implements OnInit, OnDestroy {
this.deploymentNotificationSubscription = this.deploymentNotificationService.deploying.subscribe( this.deploymentNotificationSubscription = this.deploymentNotificationService.deploying.subscribe(
(deploying) => { (deploying) => {
this.deploying = deploying; this.deploying = deploying;
if (!deploying && config.ide.reloadIframeOnDeployButtonClick) { if (!deploying && config.ide.reloadIframeOnDeploy) {
this.reloadIframe(); this.reloadIframe();
} }
}); });