diff options
author | Phil Hughes <me@iamphill.com> | 2016-04-05 10:42:38 +0100 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2016-04-14 10:28:05 +0100 |
commit | d67c3e35c98cff2372db803f93a97a60aa8b4104 (patch) | |
tree | b9f56771b620f5e540b6773e341799ca98562cfc /app/views/groups | |
parent | c45ca936c77eceff367e27e1bf8fd5f11c6a7c39 (diff) | |
download | gitlab-ce-d67c3e35c98cff2372db803f93a97a60aa8b4104.tar.gz |
Milestones use new GLForm class
Diffstat (limited to 'app/views/groups')
-rw-r--r-- | app/views/groups/milestones/new.html.haml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/groups/milestones/new.html.haml b/app/views/groups/milestones/new.html.haml index 4290e0bf72e..caa8c4bc0ec 100644 --- a/app/views/groups/milestones/new.html.haml +++ b/app/views/groups/milestones/new.html.haml @@ -8,7 +8,7 @@ This will create milestone in every selected project %hr -= form_for @milestone, url: group_milestones_path(@group), html: { class: 'form-horizontal milestone-form gfm-form js-quick-submit js-requires-input' } do |f| += form_for @milestone, url: group_milestones_path(@group), html: { class: 'form-horizontal milestone-form common-note-form js-quick-submit js-requires-input' } do |f| .row - if @milestone.errors.any? #error_explanation @@ -27,7 +27,7 @@ = f.label :description, "Description", class: "control-label" .col-sm-10 = render layout: 'projects/md_preview', locals: { preview_class: "md-preview" } do - = render 'projects/zen', f: f, attr: :description, classes: 'description form-control' + = render 'projects/zen', f: f, attr: :description, classes: 'note-textarea' .clearfix .error-alert .form-group |