diff --git a/app/views/features/_features_table.rhtml b/app/views/features/_features_table.rhtml index 91cc937..58a72eb 100644 --- a/app/views/features/_features_table.rhtml +++ b/app/views/features/_features_table.rhtml @@ -1,7 +1,8 @@ <% labelled_form_for(:environment, @environment, :url => {:action => 'update'}) do |f| %> - <% @features.each do |feature, text| %> + <%= hidden_field_tag('environment[enabled_features][]', '') %> + <% @features.each do |feature, text| %> -- libgit2 0.21.2
<%= text %> <%= check_box_tag "environment[enabled_features][]", feature, @environment.enabled?(feature) %>