diff options
author | Kushal Pandya <kushal@gitlab.com> | 2016-12-23 15:57:41 +0530 |
---|---|---|
committer | Kushal Pandya <kushal@gitlab.com> | 2016-12-31 11:43:08 +0530 |
commit | 598d8cab324782906c84e830b5e880949c0c7a83 (patch) | |
tree | 284da689b5e9e3750b54bcf781c2401fb7336f52 /app/views/projects/milestones | |
parent | 6f6f546bc23fa6d5b2ee6a41cf8cded243b8d962 (diff) | |
download | gitlab-ce-598d8cab324782906c84e830b5e880949c0c7a83.tar.gz |
HAMLLint: Fix `SpaceBeforeScript` offences
Diffstat (limited to 'app/views/projects/milestones')
-rw-r--r-- | app/views/projects/milestones/_form.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/projects/milestones/_form.html.haml b/app/views/projects/milestones/_form.html.haml index 513710e8e66..0f4a8508751 100644 --- a/app/views/projects/milestones/_form.html.haml +++ b/app/views/projects/milestones/_form.html.haml @@ -20,6 +20,6 @@ - if @milestone.new_record? = f.submit 'Create milestone', class: "btn-create btn" = link_to "Cancel", namespace_project_milestones_path(@project.namespace, @project), class: "btn btn-cancel" - -else + - else = f.submit 'Save changes', class: "btn-save btn" = link_to "Cancel", namespace_project_milestone_path(@project.namespace, @project, @milestone), class: "btn btn-cancel" |