We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3be9e01 commit 2292fe4Copy full SHA for 2292fe4
web-common/src/features/sources/modal/ConnectorForm.svelte
@@ -81,7 +81,6 @@
81
let activeAuthInfo: ReturnType<typeof getRadioEnumOptions> | null = null;
82
let selectedAuthMethod = "";
83
let activeAuthMethod: string | null = null;
84
- let prevAuthMethod: string | null = null;
85
86
$: selectedAuthMethod = $selectedAuthMethodStore;
87
web-common/src/features/templates/JSONSchemaFormRenderer.svelte
@@ -216,7 +216,12 @@
216
}
217
</script>
218
219
-<form id={formId} class={className} use:enhance on:submit|preventDefault={onSubmit}>
+<form
220
+ id={formId}
221
+ class={className}
222
+ use:enhance
223
+ on:submit|preventDefault={onSubmit}
224
+>
225
{#if schema}
226
{#each renderOrder as [key, prop]}
227
{#if isRadioEnum(prop)}
0 commit comments