From 40a6956d8190d79524095a8d669c951e3ce9e731 Mon Sep 17 00:00:00 2001 From: Kieran Eglin Date: Thu, 22 Feb 2024 15:40:54 -0800 Subject: [PATCH] More copy improvements --- .../media_profile_html/media_profile_form.html.heex | 9 ++++++++- .../sources/source_html/source_form.html.heex | 2 +- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/lib/pinchflat_web/controllers/media_profiles/media_profile_html/media_profile_form.html.heex b/lib/pinchflat_web/controllers/media_profiles/media_profile_html/media_profile_form.html.heex index 0786aa7..09c8de2 100644 --- a/lib/pinchflat_web/controllers/media_profiles/media_profile_html/media_profile_form.html.heex +++ b/lib/pinchflat_web/controllers/media_profiles/media_profile_html/media_profile_form.html.heex @@ -2,10 +2,17 @@ <.error :if={@changeset.action}> Oops, something went wrong! Please check the errors below. +

General Options

- <.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]} diff --git a/lib/pinchflat_web/controllers/sources/source_html/source_form.html.heex b/lib/pinchflat_web/controllers/sources/source_html/source_form.html.heex index b3725de..88bbba7 100644 --- a/lib/pinchflat_web/controllers/sources/source_html/source_form.html.heex +++ b/lib/pinchflat_web/controllers/sources/source_html/source_form.html.heex @@ -7,7 +7,7 @@ field={f[:friendly_name]} type="text" label="Custom Name" - help="Something descriptive to help you find it later. Does not impact indexing or downloading" + 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)" />