fixes
parent
1337ab8346
commit
29cf3ac259
|
@ -5505,6 +5505,7 @@ class TaskParameterSerializer {
|
||||||
x.value !== `undefined`)
|
x.value !== `undefined`)
|
||||||
.map((x) => {
|
.map((x) => {
|
||||||
x.name = TaskParameterSerializer.ToEnvVarFormat(x.name);
|
x.name = TaskParameterSerializer.ToEnvVarFormat(x.name);
|
||||||
|
x.value = `${x.value}`;
|
||||||
return x;
|
return x;
|
||||||
}), (item) => item.name);
|
}), (item) => item.name);
|
||||||
return result;
|
return result;
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -41,6 +41,7 @@ export class TaskParameterSerializer {
|
||||||
)
|
)
|
||||||
.map((x) => {
|
.map((x) => {
|
||||||
x.name = TaskParameterSerializer.ToEnvVarFormat(x.name);
|
x.name = TaskParameterSerializer.ToEnvVarFormat(x.name);
|
||||||
|
x.value = `${x.value}`;
|
||||||
|
|
||||||
return x;
|
return x;
|
||||||
}),
|
}),
|
||||||
|
|
Loading…
Reference in New Issue