Skip to content

Commit

Permalink
Remove unhelpful title from comment form
Browse files Browse the repository at this point in the history
Signed-off-by: Keshav Priyadarshi <[email protected]>
  • Loading branch information
keshav-space committed Jan 3, 2025
1 parent 1e32797 commit 18309aa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion fedcode/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,10 @@ class Meta:
def __init__(self, *args, **kwargs):
super(CreateNoteForm, self).__init__(*args, **kwargs)
self.fields["content"].widget.attrs.update(
{"class": "textarea", "placeholder": "Add a note...", "rows": 5}
{"class": "textarea", "placeholder": "Comment...", "rows": 5}
)
self.fields["content"].label = ""
self.fields["content"].help_text = ""


class ReviewStatusForm(forms.ModelForm):
Expand Down

0 comments on commit 18309aa

Please sign in to comment.