diff options
author | Lukáš Nový <lukas.novy@pirati.cz> | 2016-08-25 21:56:32 +0000 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2017-02-21 14:33:06 +0100 |
commit | 71270f80dd42e524a904a3c19f23217e8766e282 (patch) | |
tree | 002762809e69b30f2ea9c35f2da2036fd6c84f63 /app | |
parent | 459a97d46812fecc59c973bad356935422c7f60e (diff) | |
download | gitlab-ce-71270f80dd42e524a904a3c19f23217e8766e282.tar.gz |
UI: Allow a project variable to be set to an empty value
Signed-off-by: Rémy Coutable <remy@rymai.me>
Diffstat (limited to 'app')
-rw-r--r-- | app/views/projects/variables/_form.html.haml | 2 |
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" |