Skip to content

Commit

Permalink
chore: stupid fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
danielo515 committed Jun 30, 2024
1 parent cec03e1 commit 418a060
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 9 deletions.
8 changes: 0 additions & 8 deletions src/views/components/Form/InputField.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,3 @@
{:else if inputType === "datetime"}
<input type="datetime-local" bind:value={$value} />
{/if}

<style>
textarea {
width: 100%;
flex: 1;
padding: 0.5rem;
}
</style>
2 changes: 1 addition & 1 deletion src/views/components/Form/RenderField.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
required={definition.isRequired}
>
{#if definition.input.type === "multiselect"}
<MultiSelectField I={definition.input} {value} {errors} {app} />
<MultiSelectField input={definition.input} {value} {errors} {app} />
{:else if definition.input.type === "slider"}
<InputSlider input={definition.input} {value} />
{:else if definition.input.type === "tag"}
Expand Down

0 comments on commit 418a060

Please sign in to comment.