Small form improvements (#36)

* Clarified intent of custom name field

* More copy improvements
This commit is contained in:
Kieran 2024-02-22 18:48:25 -08:00 committed by GitHub
parent 3b94b269d9
commit 4094da9e03
2 changed files with 14 additions and 2 deletions

View file

@ -2,10 +2,17 @@
<.error :if={@changeset.action}>
Oops, something went wrong! Please check the errors below.
</.error>
<h3 class="my-4 text-2xl text-black dark:text-white">
General Options
</h3>
<.input field={f[:name]} type="text" label="Name" placeholder="New Profile" help="(required)" />
<.input
field={f[:name]}
type="text"
label="Name"
placeholder="New Profile"
help="Something descriptive. Does not impact indexing or downloading (required)"
/>
<.input
field={f[:output_path_template]}

View file

@ -3,7 +3,12 @@
Oops, something went wrong! Please check the errors below.
</.error>
<.input field={f[:friendly_name]} type="text" label="Custom Name" />
<.input
field={f[:friendly_name]}
type="text"
label="Custom Name"
help="Something descriptive. Does not impact indexing or downloading"
/>
<.input field={f[:original_url]} type="text" label="Source URL" help="URL of a channel or playlist (required)" />