Skip to content

Commit

Permalink
Merge pull request #52 from e-flux-platform/string-value
Browse files Browse the repository at this point in the history
Configuration value should always be a string
  • Loading branch information
nick-jones authored Feb 28, 2024
2 parents 8209e25 + be99168 commit c6c8376
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default async function handleGetConfiguration({
.map((variable) => {
return {
key: variable.key,
value: variable.value,
value: `${variable.value}`,
readonly: false,
};
}),
Expand Down

0 comments on commit c6c8376

Please sign in to comment.