Skip to content

Commit

Permalink
Update typeahead_service.rb (#1974)
Browse files Browse the repository at this point in the history
  • Loading branch information
jywarren committed Jan 12, 2018
1 parent 46c129e commit 01fac7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/services/typeahead_service.rb
Expand Up @@ -130,7 +130,7 @@ def search_profiles(srchString, limit = 5)
def search_notes(srchString, limit = 5)
sresult = TagList.new
unless srchString.nil? || srchString == 0
notes(srchString, limit).each do |match|
notes(srchString, limit).uniq.each do |match|
tval = TagResult.new
tval.tagId = match.nid
tval.tagVal = match.title
Expand Down

0 comments on commit 01fac7c

Please sign in to comment.