Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/helpers/notes_helper.rb')
-rw-r--r--app/helpers/notes_helper.rb24
1 files changed, 14 insertions, 10 deletions
diff --git a/app/helpers/notes_helper.rb b/app/helpers/notes_helper.rb
index af8da86b391..75e89a7d7bc 100644
--- a/app/helpers/notes_helper.rb
+++ b/app/helpers/notes_helper.rb
@@ -71,16 +71,20 @@ module NotesHelper
def link_to_reply_discussion(discussion, line_type = nil)
return unless current_user
- data = {
- discussion_id: discussion.reply_id,
- discussion_project_id: discussion.project&.id,
- line_type: line_type
- }
-
- button_tag 'Reply...',
- class: 'btn btn-text-field js-discussion-reply-button',
- data: data,
- title: 'Add a reply'
+ content_tag(
+ :textarea,
+ rows: 1,
+ placeholder: _('Reply...'),
+ 'aria-label': _('Reply to comment'),
+ class: 'reply-placeholder-text-field js-discussion-reply-button',
+ data: {
+ discussion_id: discussion.reply_id,
+ discussion_project_id: discussion.project&.id,
+ line_type: line_type
+ }
+ ) do
+ # render empty textarea
+ end
end
def note_max_access_for_user(note)