- @notes = closed_condition(Note.scoped)
- @notes = @notes.joins(:comments).where("note_comments.body ~ ?", params[:q])
+ @notes = closed_condition(Note.all)
+ @notes = @notes.joins(:comments).where("to_tsvector('english', note_comments.body) @@ plainto_tsquery('english', ?)", params[:q])