mirror of
https://github.com/avatao-content/frontend-tutorial-framework
synced 2025-04-03 11:52:40 +00:00
Rename config key to clarify meaning
This commit is contained in:
parent
ec757bb21d
commit
d13935511b
@ -40,7 +40,7 @@ export const config = {
|
|||||||
console: {
|
console: {
|
||||||
route: 'console',
|
route: 'console',
|
||||||
defaultContent: '',
|
defaultContent: '',
|
||||||
rewriteContentWithProcessLogs: 'stdout',
|
rewriteContentWithProcessLogsOnDeploy: 'stdout',
|
||||||
showLiveLogs: true,
|
showLiveLogs: true,
|
||||||
defaultLogs: {
|
defaultLogs: {
|
||||||
stdout: '',
|
stdout: '',
|
||||||
|
@ -14,7 +14,7 @@ import { ProcessLogService } from '../services/processlog.service';
|
|||||||
})
|
})
|
||||||
export class ConsoleComponent implements OnInit {
|
export class ConsoleComponent implements OnInit {
|
||||||
console_content: string = config.console.defaultContent;
|
console_content: string = config.console.defaultContent;
|
||||||
rewriteContentWithProcessLogs: string = config.console.rewriteContentWithProcessLogs;
|
rewriteContentWithProcessLogsOnDeploy: string = config.console.rewriteContentWithProcessLogsOnDeploy;
|
||||||
|
|
||||||
command_handlers = {
|
command_handlers = {
|
||||||
'write': this.writeHandler.bind(this),
|
'write': this.writeHandler.bind(this),
|
||||||
@ -42,8 +42,8 @@ export class ConsoleComponent implements OnInit {
|
|||||||
}
|
}
|
||||||
|
|
||||||
newLogsHandler(logs: any) {
|
newLogsHandler(logs: any) {
|
||||||
if (this.rewriteContentWithProcessLogs !== '') {
|
if (this.rewriteContentWithProcessLogsOnDeploy !== '') {
|
||||||
const log = logs[this.rewriteContentWithProcessLogs];
|
const log = logs[this.rewriteContentWithProcessLogsOnDeploy];
|
||||||
if (log) {
|
if (log) {
|
||||||
this.setContent(log);
|
this.setContent(log);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user