summaryrefslogtreecommitdiff
path: root/app/views/projects/environments/new.html.haml
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/projects/environments/new.html.haml')
-rw-r--r--app/views/projects/environments/new.html.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/projects/environments/new.html.haml b/app/views/projects/environments/new.html.haml
index c7abac6e49f..ade41d9de2d 100644
--- a/app/views/projects/environments/new.html.haml
+++ b/app/views/projects/environments/new.html.haml
@@ -9,7 +9,7 @@
= form_for @environment, url: namespace_project_environments_path(@project.namespace, @project), html: { id: "new-environment-form", class: "col-lg-9 js-new-environment-form js-requires-input" } do |f|
= form_errors(@environment)
.form-group
- = f.label :ref, 'Environment name', class: 'label-light'
+ = f.label :name, 'Environment name', class: 'label-light'
= f.text_field :name, required: true, class: 'form-control'
= f.submit 'Create environment', class: 'btn btn-create'
= link_to "Cancel", namespace_project_environments_path(@project.namespace, @project), class: "btn btn-cancel"