diff options
author | Marin Jankovski <maxlazio@gmail.com> | 2014-12-22 16:44:14 +0100 |
---|---|---|
committer | Marin Jankovski <maxlazio@gmail.com> | 2014-12-22 16:44:14 +0100 |
commit | 8be0c60e4069cd07ee4ae4d4f2508b554a0d16c3 (patch) | |
tree | e716adf0ef8f95a1229396a037ff0727744ec6ee | |
parent | bf69d183461f61e3822c167ff8a65a89d58e80ff (diff) | |
download | gitlab-ce-8be0c60e4069cd07ee4ae4d4f2508b554a0d16c3.tar.gz |
Remove extra css class markdown-area which prevented attachments upload.
-rw-r--r-- | app/views/projects/notes/_note.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/projects/notes/_note.html.haml b/app/views/projects/notes/_note.html.haml index db972ec572d..80e7342455b 100644 --- a/app/views/projects/notes/_note.html.haml +++ b/app/views/projects/notes/_note.html.haml @@ -46,7 +46,7 @@ .note-edit-form = form_for note, url: project_note_path(@project, note), method: :put, remote: true, authenticity_token: true do |f| = render layout: 'projects/md_preview' do - = f.text_area :note, class: 'note_text js-note-text markdown-area js-gfm-input turn-on' + = f.text_area :note, class: 'note_text js-note-text js-gfm-input turn-on' .form-actions.clearfix = f.submit 'Save changes', class: "btn btn-primary btn-save js-comment-button" |