Skip to content

Commit

Permalink
Fix categories field not rendering
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronzdavis committed Mar 14, 2016
1 parent ddf3bd6 commit ba82dca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/views/spree/admin/blog_entries/_form.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@
<%= form.field_container :category_list do %>
<div class="form-group">
<%= form.label :category_list, Spree.t(:category_list) %>
<%= form.text_field :category_list, :class => '' %>
<%= form.text_field :category_list, value: @blog_entry.category_list.join(", ") %>
</div><!-- form-group -->
<% end %>

<%= form.field_container :tag_list do %>
<div class="form-group">
<%= form.label :tag_list, Spree.t(:tag_list) %>
<%= form.text_field :tag_list, :class => '' %>
<%= form.text_field :tag_list, value: @blog_entry.tag_list.join(", ") %>
</div><!-- form-group -->
<% end %>

Expand Down

0 comments on commit ba82dca

Please sign in to comment.