diff options
author | Robert Schilling <rschilling@student.tugraz.at> | 2014-10-02 10:33:09 +0200 |
---|---|---|
committer | Robert Schilling <rschilling@student.tugraz.at> | 2014-10-02 10:33:09 +0200 |
commit | e2073f286e1eceb961795af5ea88a39b440e49ac (patch) | |
tree | de4a329519115d5b22a4c9591ba650ce649af0ea | |
parent | 4b6bbf92ab4277ef6e5437139e0a876d71c663f8 (diff) | |
parent | 04b7dd038c636dd62a4a2edeaa97bc063663c130 (diff) | |
download | gitlab-ce-e2073f286e1eceb961795af5ea88a39b440e49ac.tar.gz |
Merge pull request #7921 from cirosantilli/improve-new-file-commit-placeholder
Improve new file commit message textarea placeholder.
-rw-r--r-- | app/views/projects/new_tree/show.html.haml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/views/projects/new_tree/show.html.haml b/app/views/projects/new_tree/show.html.haml index 4ce8d372a38..24d77344fd5 100644 --- a/app/views/projects/new_tree/show.html.haml +++ b/app/views/projects/new_tree/show.html.haml @@ -25,7 +25,8 @@ Commit message .col-sm-10 = render 'shared/commit_message_container', {textarea: text_area_tag('commit_message', - params[:commit_message], placeholder: "Added new file", required: true, rows: 3, class: 'form-control')} + params[:commit_message], placeholder: 'Add new file', + required: true, rows: 3, class: 'form-control')} .file-holder .file-title |