Skip to content

Commit

Permalink
fix(instance) ensure image is always controlled component in creation…
Browse files Browse the repository at this point in the history
… form
  • Loading branch information
edlerd committed May 25, 2023
1 parent 7e24a45 commit 31bd84e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/instances/forms/InstanceCreateDetailsForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const InstanceCreateDetailsForm: FC<Props> = ({
const image = formik.values.image;
return image
? `${image.os} ${image.release} ${image.aliases.split(",")[0]}`
: undefined;
: "";
}

return (
Expand Down

0 comments on commit 31bd84e

Please sign in to comment.