File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
ResourceManager/Compute/Commands.Compute/Generated
ServiceManagement/Compute/Commands.ServiceManagement.Preview/Generated Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -72,10 +72,10 @@ function display(cli, o) {
72
72
for ( var t in arr ) {
73
73
var prebuf = Array ( arr [ t ] . depth * 2 ) . join ( ' ' ) ;
74
74
var key = arr [ t ] . key ? arr [ t ] . key : '' ;
75
- var postbuf = Array ( width - ( prebuf . length + key . length ) + 1 ) . join ( ' ' ) ;
75
+ var postbuf = Array ( width - ( prebuf . length + key . length ) ) . join ( ' ' ) ;
76
76
var str = prebuf + capitalize ( key ) + postbuf ;
77
77
if ( arr [ t ] . value ) {
78
- str += arr [ t ] . value ;
78
+ str += ' : ' + arr [ t ] . value ;
79
79
}
80
80
cli . output . data ( str ) ;
81
81
}
Original file line number Diff line number Diff line change @@ -72,10 +72,10 @@ function display(cli, o) {
72
72
for (var t in arr) {
73
73
var prebuf = Array(arr[t].depth * 2).join(' ');
74
74
var key = arr[t].key ? arr[t].key : '';
75
- var postbuf = Array(width - (prebuf.length + key.length) + 1 ).join(' ');
75
+ var postbuf = Array(width - (prebuf.length + key.length)).join(' ');
76
76
var str = prebuf + capitalize(key) + postbuf;
77
77
if (arr[t].value) {
78
- str += arr[t].value;
78
+ str += ' : ' + arr[t].value;
79
79
}
80
80
cli.output.data(str);
81
81
}
You can’t perform that action at this time.
0 commit comments