Skip to content

Instantly share code, notes, and snippets.

@NaiyaShah-BTC
Created April 8, 2019 10:22
Show Gist options
  • Select an option

  • Save NaiyaShah-BTC/b0ca01b82a2a6a1658c82cf5f5fe642c to your computer and use it in GitHub Desktop.

Select an option

Save NaiyaShah-BTC/b0ca01b82a2a6a1658c82cf5f5fe642c to your computer and use it in GitHub Desktop.
# bad
params[:search_type].present? && params[:search_type] == 'Dashboard'
# good
params[:search_type] == 'Dashboard'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment