From 8bc8e01fcf6502888f1088a5b72a8ae936c628fc Mon Sep 17 00:00:00 2001 From: Eric Eastwood Date: Mon, 3 Jul 2017 12:55:39 -0500 Subject: [PATCH] Remove unncessary if-statement, thanks @zj --- app/views/projects/pipeline_schedules/_form.html.haml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/app/views/projects/pipeline_schedules/_form.html.haml b/app/views/projects/pipeline_schedules/_form.html.haml index 4f65532e279..0e600c59ef6 100644 --- a/app/views/projects/pipeline_schedules/_form.html.haml +++ b/app/views/projects/pipeline_schedules/_form.html.haml @@ -27,9 +27,8 @@ %label.label-light #{ _('Variables') } %ul.js-pipeline-variable-list.pipeline-variable-list - - if @schedule.variables.present? - - @schedule.variables.each_with_index do |variable, i| - = render 'variable_row', id: variable.id, key: variable.key, value: variable.value + - @schedule.variables.each_with_index do |variable, i| + = render 'variable_row', id: variable.id, key: variable.key, value: variable.value = render 'variable_row' .form-group .col-md-9