diff --git a/mayan/apps/document_states/forms.py b/mayan/apps/document_states/forms.py index cc7c76953b..971b17bd2d 100644 --- a/mayan/apps/document_states/forms.py +++ b/mayan/apps/document_states/forms.py @@ -178,7 +178,12 @@ class WorkflowInstanceTransitionForm(forms.Form): label=_('Transition'), queryset=WorkflowTransition.objects.none() ) comment = forms.CharField( - label=_('Comment'), required=False, widget=forms.widgets.Textarea() + help_text=_('Optional comment to attach to the transition.'), + label=_('Comment'), required=False, widget=forms.widgets.Textarea( + attrs={ + 'rows': 3 + } + ) )