diff options
Diffstat (limited to 'Biz/PodcastItLater/UI.py')
| -rw-r--r-- | Biz/PodcastItLater/UI.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Biz/PodcastItLater/UI.py b/Biz/PodcastItLater/UI.py index b243ae7..5c65ca4 100644 --- a/Biz/PodcastItLater/UI.py +++ b/Biz/PodcastItLater/UI.py @@ -751,7 +751,7 @@ class FeedbackForm(Component[AnyChildren, FeedbackFormAttrs]): html.textarea( name="use_case", id="use_case", - rows="3", # type: ignore[call-arg] + rows=3, placeholder=( "e.g., catching up on articles during commute, " "listening to research papers while exercising..." @@ -770,7 +770,7 @@ class FeedbackForm(Component[AnyChildren, FeedbackFormAttrs]): html.textarea( name="feedback_text", id="feedback_text", - rows="3", # type: ignore[call-arg] + rows=3, placeholder="Suggestions, issues, feature requests...", classes=["form-control"], ), |
