From 703d7b01681cef6fa6a8b9f770307a650c0a164d Mon Sep 17 00:00:00 2001 From: Steven Nguyen Date: Mon, 6 May 2024 11:05:25 -0700 Subject: [PATCH] fix(functions): wrap input with form list so bullet point doesn't show Inputs are list elements (li) so they must be wrapped with a form list (ul) to prevent the bullet point from showing. --- .../functions/steps/createRepository.svelte | 36 +++++++++---------- 1 file changed, 17 insertions(+), 19 deletions(-) diff --git a/src/lib/wizards/functions/steps/createRepository.svelte b/src/lib/wizards/functions/steps/createRepository.svelte index 2b8247a32..d6126890c 100644 --- a/src/lib/wizards/functions/steps/createRepository.svelte +++ b/src/lib/wizards/functions/steps/createRepository.svelte @@ -103,25 +103,23 @@ {:then installations} {#if hasInstallations} -
-
- { - return { - label: entry.organization, - value: entry.$id - }; - })} - on:change={() => { - $installation = installations.find( - (entry) => entry.$id === selectedInstallationId - ); - }} - bind:value={selectedInstallationId} /> -
-
+ + { + return { + label: entry.organization, + value: entry.$id + }; + })} + on:change={() => { + $installation = installations.find( + (entry) => entry.$id === selectedInstallationId + ); + }} + bind:value={selectedInstallationId} /> + {:else}