remove trailing commas
This commit is contained in:
parent
9de3d20ee9
commit
42fd369cf4
|
@ -108,7 +108,7 @@ Dashboard.prototype.layoutLog = function() {
|
||||||
border: {
|
border: {
|
||||||
fg: this.color
|
fg: this.color
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
this.logText = blessed.log({
|
this.logText = blessed.log({
|
||||||
|
@ -184,14 +184,14 @@ Dashboard.prototype.layoutAssets = function() {
|
||||||
left: "50%",
|
left: "50%",
|
||||||
top: "42%",
|
top: "42%",
|
||||||
border: {
|
border: {
|
||||||
type: "line",
|
type: "line"
|
||||||
},
|
},
|
||||||
style: {
|
style: {
|
||||||
fg: -1,
|
fg: -1,
|
||||||
border: {
|
border: {
|
||||||
fg: this.color,
|
fg: this.color
|
||||||
},
|
}
|
||||||
},
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
this.assetTable = blessed.table({
|
this.assetTable = blessed.table({
|
||||||
|
@ -230,20 +230,20 @@ Dashboard.prototype.layoutStatus = function() {
|
||||||
label: "Environment",
|
label: "Environment",
|
||||||
tags: true,
|
tags: true,
|
||||||
padding: {
|
padding: {
|
||||||
left: 1,
|
left: 1
|
||||||
},
|
},
|
||||||
width: "100%",
|
width: "100%",
|
||||||
height: "20%",
|
height: "20%",
|
||||||
valign: "middle",
|
valign: "middle",
|
||||||
border: {
|
border: {
|
||||||
type: "line",
|
type: "line"
|
||||||
},
|
},
|
||||||
style: {
|
style: {
|
||||||
fg: -1,
|
fg: -1,
|
||||||
border: {
|
border: {
|
||||||
fg: this.color,
|
fg: this.color
|
||||||
},
|
}
|
||||||
},
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
this.operations = blessed.box({
|
this.operations = blessed.box({
|
||||||
|
@ -251,20 +251,20 @@ Dashboard.prototype.layoutStatus = function() {
|
||||||
label: "Status",
|
label: "Status",
|
||||||
tags: true,
|
tags: true,
|
||||||
padding: {
|
padding: {
|
||||||
left: 1,
|
left: 1
|
||||||
},
|
},
|
||||||
width: "100%",
|
width: "100%",
|
||||||
height: "20%",
|
height: "20%",
|
||||||
valign: "middle",
|
valign: "middle",
|
||||||
border: {
|
border: {
|
||||||
type: "line",
|
type: "line"
|
||||||
},
|
},
|
||||||
style: {
|
style: {
|
||||||
fg: -1,
|
fg: -1,
|
||||||
border: {
|
border: {
|
||||||
fg: this.color,
|
fg: this.color
|
||||||
},
|
}
|
||||||
},
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
this.progress = blessed.box({
|
this.progress = blessed.box({
|
||||||
|
@ -283,9 +283,9 @@ Dashboard.prototype.layoutStatus = function() {
|
||||||
style: {
|
style: {
|
||||||
fg: -1,
|
fg: -1,
|
||||||
border: {
|
border: {
|
||||||
fg: this.color,
|
fg: this.color
|
||||||
},
|
}
|
||||||
},
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
this.screen.append(this.wrapper);
|
this.screen.append(this.wrapper);
|
||||||
|
@ -302,14 +302,14 @@ Dashboard.prototype.layoutCmd = function() {
|
||||||
left: '0%',
|
left: '0%',
|
||||||
top: '95%',
|
top: '95%',
|
||||||
border: {
|
border: {
|
||||||
type: 'line',
|
type: 'line'
|
||||||
},
|
},
|
||||||
style: {
|
style: {
|
||||||
fg: 'black',
|
fg: 'black',
|
||||||
border: {
|
border: {
|
||||||
fg: this.color,
|
fg: this.color
|
||||||
},
|
}
|
||||||
},
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
this.input = blessed.textbox({
|
this.input = blessed.textbox({
|
||||||
|
|
Loading…
Reference in New Issue