mirror of
https://github.com/avatao-content/frontend-tutorial-framework
synced 2025-04-03 10:12:41 +00:00
Implement automatic switching to console on deploy click
This commit is contained in:
parent
3565b890c4
commit
3af98a0c19
@ -27,7 +27,8 @@ export const config = {
|
|||||||
defaultLanguage: 'text',
|
defaultLanguage: 'text',
|
||||||
deployProcessName: 'webservice',
|
deployProcessName: 'webservice',
|
||||||
showDeployButton: true,
|
showDeployButton: true,
|
||||||
reloadIframeOnDeployButtonClick: true
|
reloadIframeOnDeployButtonClick: true,
|
||||||
|
showConsoleOnDeploy: true,
|
||||||
},
|
},
|
||||||
terminal: {
|
terminal: {
|
||||||
route: 'shell'
|
route: 'shell'
|
||||||
|
@ -104,5 +104,8 @@ export class DashboardComponent implements OnInit, OnDestroy {
|
|||||||
|
|
||||||
setConsoleContent(content: string) {
|
setConsoleContent(content: string) {
|
||||||
this.childConsole.newLogHandler(content);
|
this.childConsole.newLogHandler(content);
|
||||||
|
if (config.ide.showConsoleOnDeploy) {
|
||||||
|
this.selectTerminalMenuItem('console');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user