Commit 5ac7468c authored by Fatih Acet's avatar Fatih Acet

Merge branch '30616-improve-merge-request-description-placeholder' into 'master'

Resolve "Improve merge request description placeholder"

Closes #30616

See merge request gitlab-org/gitlab!20032
parents e6b5fce9 37623992
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
- model = local_assigns.fetch(:model) - model = local_assigns.fetch(:model)
- form = local_assigns.fetch(:form) - form = local_assigns.fetch(:form)
- placeholder = model.is_a?(MergeRequest) ? _('Describe the goal of the changes and what reviewers should be aware of.') : _('Write a comment or drag your files here…')
- supports_quick_actions = model.new_record? - supports_quick_actions = model.new_record?
- if supports_quick_actions - if supports_quick_actions
...@@ -16,7 +17,7 @@ ...@@ -16,7 +17,7 @@
= render layout: 'projects/md_preview', locals: { url: preview_url, referenced_users: true } do = render layout: 'projects/md_preview', locals: { url: preview_url, referenced_users: true } do
= render 'projects/zen', f: form, attr: :description, = render 'projects/zen', f: form, attr: :description,
classes: 'note-textarea qa-issuable-form-description rspec-issuable-form-description', classes: 'note-textarea qa-issuable-form-description rspec-issuable-form-description',
placeholder: "Write a comment or drag your files here…", placeholder: placeholder,
supports_quick_actions: supports_quick_actions supports_quick_actions: supports_quick_actions
= render 'shared/notes/hints', supports_quick_actions: supports_quick_actions = render 'shared/notes/hints', supports_quick_actions: supports_quick_actions
.clearfix .clearfix
......
---
title: Improve merge request description placeholder
merge_request: 20032
author: Jacopo Beschi @jacopo-beschi
type: changed
...@@ -5683,6 +5683,9 @@ msgstr "" ...@@ -5683,6 +5683,9 @@ msgstr ""
msgid "Descending" msgid "Descending"
msgstr "" msgstr ""
msgid "Describe the goal of the changes and what reviewers should be aware of."
msgstr ""
msgid "Description" msgid "Description"
msgstr "" msgstr ""
......
...@@ -25,6 +25,11 @@ describe "User creates a merge request", :js do ...@@ -25,6 +25,11 @@ describe "User creates a merge request", :js do
click_button("Compare branches") click_button("Compare branches")
page.within('.merge-request-form') do
expect(page.find('#merge_request_title')['placeholder']).to eq 'Title'
expect(page.find('#merge_request_description')['placeholder']).to eq 'Describe the goal of the changes and what reviewers should be aware of.'
end
fill_in("Title", with: title) fill_in("Title", with: title)
click_button("Submit merge request") click_button("Submit merge request")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment