Skip to content

Commit 60bfc1f

Browse files
committed
Rubocop fix for valid_tags_list? helper
1 parent 99df789 commit 60bfc1f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/helpers/search_helper.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ def qualifiers_to_sql(qualifiers, query, user)
248248
# @param param [String, Array<String>, nil] parameter to check
249249
# @return [Boolean] check result
250250
def valid_tags_list?(param)
251-
param&.is_a?(Array) && param&.all? { |id| id.match?(/^\d+$/) }
251+
param.is_a?(Array) && param&.all? { |id| id.match?(/^\d+$/) }
252252
end
253253

254254
# Is a given param a valid source type?

0 commit comments

Comments
 (0)