Skip to content

Commit

Permalink
fix: correct layout for openshift routes
Browse files Browse the repository at this point in the history
I added a wrapper flex div for the other checkboxes in a prior commit, not
sure why I didn't do this one. Will see if this can be made part of the
component as we upgrade Checkbox.

Fixes podman-desktop#6392.

Signed-off-by: Tim deBoer <[email protected]>
  • Loading branch information
deboer-tim authored and benoitf committed Mar 13, 2024
1 parent e0e03ad commit 8c5eea9
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions packages/renderer/src/lib/pod/DeployPodToKube.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -471,9 +471,11 @@ function updateKubeResult() {
{#if openshiftRouteGroupSupported}
<div class="pt-2 m-2">
<label for="routes" class="block mb-1 text-sm font-medium text-gray-400">Create OpenShift routes:</label>
<Checkbox bind:checked="{deployUsingRoutes}" name="useRoutes" id="useRoutes" required />
<span class="text-gray-400 text-sm ml-1"
>Create OpenShift routes to get access to the exposed ports of this pod.</span>
<div class="flex flex-row">
<Checkbox bind:checked="{deployUsingRoutes}" name="useRoutes" id="useRoutes" required />
<span class="text-gray-400 text-sm ml-1"
>Create OpenShift routes to get access to the exposed ports of this pod.</span>
</div>
</div>
{/if}

Expand Down

0 comments on commit 8c5eea9

Please sign in to comment.