Skip to content

Instantly share code, notes, and snippets.

@EminenceHC
Created March 11, 2015 17:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save EminenceHC/3292f611445561dd1236 to your computer and use it in GitHub Desktop.
Save EminenceHC/3292f611445561dd1236 to your computer and use it in GitHub Desktop.
Default value if param present?
<% if params[:referral_id].present? %>
<%= f.input :referral_id, input_html: {value: params[:referral_id]} %>
<% else %>
<%= f.input :referral_id %>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment