Skip to content

Commit

Permalink
Merge pull request #228 from SYBIOTE/main
Browse files Browse the repository at this point in the history
fix string concat error
  • Loading branch information
bhouston committed Jul 25, 2023
2 parents da3f143 + 91f6b3d commit 97feb5a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export function getStringConversionsForValueType({
label: 'To String',
in: [valueTypeName],
out: 'string',
exec: (a: any) => values[valueTypeName]?.serialize(a)
exec: (a: any) => `${values[valueTypeName]?.serialize(a)}`
})
];
}

0 comments on commit 97feb5a

Please sign in to comment.