feat: update jsonToBru.js to use getValueString for text type items in multipartForm (#2407)

This commit is contained in:
Sanjai Kumar 2024-06-04 14:16:07 +05:30 committed by GitHub
parent 2621c384c0
commit ee4dba54f3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -263,7 +263,7 @@ ${indentString(body.sparql)}
const enabled = item.enabled ? '' : '~';
if (item.type === 'text') {
return `${enabled}${item.name}: ${item.value}`;
return `${enabled}${item.name}: ${getValueString(item.value)}`;
}
if (item.type === 'file') {