fix mapping to string of number value

This commit is contained in:
Federico M. Facca
2023-05-03 15:35:50 +02:00
parent 4da4b3fa8e
commit aa0c892e1d
3 changed files with 7 additions and 2 deletions
Generated Vendored
+3
View File
@@ -728,6 +728,9 @@ function retrieveProperty(pr, property, useCase) {
else if (Array.isArray(value)) {
value = value.join(','); // join into single string
}
else {
value = value.toString();
}
return value;
}
exports.retrieveProperty = retrieveProperty;