diff --git a/lib/submitters.rb b/lib/submitters.rb index 7149def2..4783d404 100644 --- a/lib/submitters.rb +++ b/lib/submitters.rb @@ -84,7 +84,7 @@ module Submitters submitter_ids = SearchEntry.where(record_type: 'Submitter') .where(account_id: current_user.account_id) .where(*query) - .limit(keyword.length > 2 ? 500 : 5000) + .limit(keyword.strip.length > 2 ? 500 : 5000) .pluck(:record_id) submitters.where(id: submitter_ids.first(100))