Commit 219df8562b332c6d2bbb63ecc0c6174a83ce09ad

Authored by Daniela Feitosa
1 parent 3165815c

Added formlabel class

(ActionItem2320)
app/views/manage_products/_edit_info.rhtml
... ... @@ -22,7 +22,7 @@
22 22 <td class='formfield'><%= labelled_radio_button( _('Yes'), 'product[available]', true, @product.available, :id => 'product_available') + labelled_radio_button( _('No'), 'product[available]', false, !@product.available) %></td>
23 23 </tr>
24 24 <tr>
25   - <td><%= f.label :highlighted, _('Highlight product') %></td>
  25 + <td><%= f.label :highlighted, _('Highlight this product?'), :class => 'formlabel' %></td>
26 26 <td class='formfield'><%= f.check_box(:highlighted) %></td>
27 27 </tr>
28 28 </table>
... ...
features/manage_products.feature
... ... @@ -538,5 +538,5 @@ Feature: manage products
538 538 And I am logged in as "joaosilva"
539 539 When I go to Rede Moinho's page of product Bike
540 540 And I follow "Add price and other basic information"
541   - Then I should see "Highlight product"
542   - And I check "Highlight product"
  541 + Then I should see "Highlight this product?"
  542 + And I check "Highlight this product?"
... ...