fix(import/postman): handle non-string form values (#4645)
Co-authored-by: nivedin <nivedinp@gmail.com> Co-authored-by: jamesgeorge007 <25279263+jamesgeorge007@users.noreply.github.com>
This commit is contained in:
parent
56900d37ac
commit
37b7ddf2b0
1 changed files with 2 additions and 2 deletions
|
|
@ -296,7 +296,7 @@ const getHoppReqBody = ({
|
||||||
<FormDataKeyValue>{
|
<FormDataKeyValue>{
|
||||||
key: replacePMVarTemplating(param.key),
|
key: replacePMVarTemplating(param.key),
|
||||||
value: replacePMVarTemplating(
|
value: replacePMVarTemplating(
|
||||||
param.type === "text" ? (param.value as string) : ""
|
param.type === "text" ? String(param.value) : ""
|
||||||
),
|
),
|
||||||
active: !param.disabled,
|
active: !param.disabled,
|
||||||
isFile: false, // TODO: Preserve isFile state ?
|
isFile: false, // TODO: Preserve isFile state ?
|
||||||
|
|
@ -313,7 +313,7 @@ const getHoppReqBody = ({
|
||||||
(param) =>
|
(param) =>
|
||||||
`${replacePMVarTemplating(
|
`${replacePMVarTemplating(
|
||||||
param.key ?? ""
|
param.key ?? ""
|
||||||
)}: ${replacePMVarTemplating(param.value ?? "")}`
|
)}: ${replacePMVarTemplating(String(param.value ?? ""))}`
|
||||||
),
|
),
|
||||||
stringArrayJoin("\n")
|
stringArrayJoin("\n")
|
||||||
),
|
),
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue