Skip to content

Commit

Permalink
fix(services): fix container image tags selection (#1684)
Browse files Browse the repository at this point in the history
  • Loading branch information
ctjhoa authored Sep 20, 2024
1 parent c24e2df commit 26a48d0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ function ImageTag({
<div className="flex justify-center">
<LoaderSpinner />
</div>
) : options.length > 0 && versionKnown ? (
) : options.length > 0 && (imageTag ? versionKnown : true) ? (
<Controller
name="image_tag"
control={control}
Expand Down

0 comments on commit 26a48d0

Please sign in to comment.