Rename the search param for clarity

This commit is contained in:
Jeffrey Hardy
2024-10-04 15:55:54 -04:00
parent a14b4e1073
commit cbb20ecc64
4 changed files with 12 additions and 10 deletions
+2 -2
View File
@@ -6,8 +6,8 @@ class BubblesController < ApplicationController
def index
@bubbles = @bucket.bubbles.not_popped
if params[:filter].present?
@bubbles = @bubbles.mentioning(params[:filter])
if params[:term].present?
@bubbles = @bubbles.mentioning(params[:term])
end
if params[:tag_id]