diff --git a/src/api/app/components/request_decision_component.html.haml b/src/api/app/components/request_decision_component.html.haml index 55f51be385e..f9b693c6e87 100644 --- a/src/api/app/components/request_decision_component.html.haml +++ b/src/api/app/components/request_decision_component.html.haml @@ -22,7 +22,9 @@ - if Flipper.enabled?(:content_moderation, User.session) .d-flex.justify-content-end = render CannedResponsesDropdownComponent.new(User.session.canned_responses.where(decision_type: nil).order(:title)) - = text_area_tag(:reason, nil, placeholder: 'write your comment or decision...', rows: 4, class: 'w-100 form-control mb-2 message-field') + = text_area_tag(:reason, nil, + placeholder: 'Write your comment or decision...(markdown is only supported for comments, not for decisions)', + rows: 4, class: 'w-100 form-control mb-2 message-field') .tab-pane.fade{ id: 'preview_new_comment', role: 'tabpanel', 'aria-labelledby': 'preview-message-tab' } .comment-preview.message-preview.border-bottom.border-gray-300.my-3 - if single_action_request && @is_target_maintainer && @bs_request.state.in?([:new, :review])