Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorRémy Coutable <remy@rymai.me>2017-02-22 16:12:26 +0300
committerRémy Coutable <remy@rymai.me>2017-02-22 16:12:26 +0300
commitb3bece948d9ca4708cf6bc441317dbf7f7534e73 (patch)
tree4dc58e980c8657091850a54af33d371638d4cc95 /app
parent9aaf38d6cfc67652f0239b25eae36ab6517ea02f (diff)
parent4f115a090a931c3999f6b51d9fa027165b96b618 (diff)
Merge branch 'lnovy/gitlab-ce-empty-variables' into 'master'
UI: Allow a project variable to be set to an empty value See merge request !9414
Diffstat (limited to 'app')
-rw-r--r--app/views/projects/variables/_form.html.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/projects/variables/_form.html.haml b/app/views/projects/variables/_form.html.haml
index a5bae83e0ce..1ae86d258af 100644
--- a/app/views/projects/variables/_form.html.haml
+++ b/app/views/projects/variables/_form.html.haml
@@ -6,5 +6,5 @@
= f.text_field :key, class: "form-control", placeholder: "PROJECT_VARIABLE", required: true
.form-group
= f.label :value, "Value", class: "label-light"
- = f.text_area :value, class: "form-control", placeholder: "PROJECT_VARIABLE", required: true
+ = f.text_area :value, class: "form-control", placeholder: "PROJECT_VARIABLE"
= f.submit btn_text, class: "btn btn-save"