Skip to content

Commit

Permalink
fix: don't stringify extraJson in form (#22171)
Browse files Browse the repository at this point in the history
  • Loading branch information
eschutho committed Nov 21, 2022
1 parent ac0ff78 commit 78a4bd6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ const ExtraOptions = ({
value={
!Object.keys(extraJson?.engine_params || {}).length
? ''
: JSON.stringify(extraJson?.engine_params)
: extraJson?.engine_params
}
placeholder={t('Engine Parameters')}
onChange={(json: string) =>
Expand Down

0 comments on commit 78a4bd6

Please sign in to comment.