Skip to content

Commit 18309aa

Browse files
committed
Remove unhelpful title from comment form
Signed-off-by: Keshav Priyadarshi <git@keshav.space>
1 parent 1e32797 commit 18309aa

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

fedcode/forms.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,10 @@ class Meta:
3939
def __init__(self, *args, **kwargs):
4040
super(CreateNoteForm, self).__init__(*args, **kwargs)
4141
self.fields["content"].widget.attrs.update(
42-
{"class": "textarea", "placeholder": "Add a note...", "rows": 5}
42+
{"class": "textarea", "placeholder": "Comment...", "rows": 5}
4343
)
4444
self.fields["content"].label = ""
45+
self.fields["content"].help_text = ""
4546

4647

4748
class ReviewStatusForm(forms.ModelForm):

0 commit comments

Comments
 (0)