Skip to content

Commit

Permalink
fix(common): add default value to container.node in ConfigWizard
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelDeBoey committed Oct 15, 2022
1 parent e5ea808 commit c4d8e32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/common/src/templates/configuration/sandbox/ui.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ export const ConfigWizard = (props: ConfigurationUIProps) => {
title="Node Version"
type="dropdown"
options={['10', '12', '14', '16']}
{...bindValue(parsedFile, 'container.node')}
{...bindValue(parsedFile, 'container.node', '14')}
/>
<ConfigDescription>
Which node version to use for this sandbox. Please restart the
Expand Down

0 comments on commit c4d8e32

Please sign in to comment.