Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: run image error spacing #4089

Merged
merged 1 commit into from Sep 25, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 7 additions & 4 deletions packages/renderer/src/lib/image/RunImage.svelte
Expand Up @@ -585,16 +585,19 @@ function checkContainerName(event: any) {
class="w-full p-2 outline-none text-sm bg-charcoal-800 rounded-sm text-gray-700 placeholder-gray-700 border {containerNameError
? 'border-red-500'
: 'border-charcoal-800'}" />
<ErrorMessage class="h-1 text-sm" error="{containerNameError}" />
<label for="modalEntrypoint" class="block mb-2 text-sm font-medium text-gray-400 dark:text-gray-400"
>Entrypoint:</label>
{#if containerNameError}
<ErrorMessage class="text-sm" error="{containerNameError}" />
{/if}
<label
for="modalEntrypoint"
class="pt-4 block mb-2 text-sm font-medium text-gray-400 dark:text-gray-400">Entrypoint:</label>
<input
type="text"
bind:value="{entrypoint}"
name="modalEntrypoint"
id="modalEntrypoint"
class="w-full p-2 outline-none text-sm bg-charcoal-800 rounded-sm text-gray-700 placeholder-gray-700 border border-charcoal-800" />
<label for="modalCommand" class="block mb-2 text-sm font-medium text-gray-400 dark:text-gray-400"
<label for="modalCommand" class="pt-4 block mb-2 text-sm font-medium text-gray-400 dark:text-gray-400"
>Command:</label>
<input
type="text"
Expand Down