Guest User

Untitled

a guest
Jun 21st, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. ## instead of this:
  2. @product_filter = params[:avail_products]
  3.  
  4. ## do this
  5.  
  6. unless params[:avail_products].blank?
  7. @product_filter = params[:avail_products][:id].blank? ? nil : params[:avail_products][:id]
  8. end
Add Comment
Please, Sign In to add comment