Commit c90cf9e5c67bf5559edfef138da5737a0feb04bb
Committed by
Rodrigo Souto
1 parent
5cafd9b6
Exists in
master
and in
28 other branches
Fix crash by using method name
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
app/views/catalog/index.rhtml
... | ... | @@ -92,7 +92,7 @@ |
92 | 92 | <% end %> |
93 | 93 | <% product.price_details.each do |i| %> |
94 | 94 | <div class="search-product-input-dots-to-price"> |
95 | - <div class="search-product-input-name"><%= i.production_cost.name %></div> | |
95 | + <div class="search-product-input-name"><%= i.name %></div> | |
96 | 96 | <%= price_span i.price, :class => 'search-product-input-price' %> |
97 | 97 | </div> |
98 | 98 | <% end %> | ... | ... |