diff --git a/ultron/objective/views.py b/ultron/objective/views.py index c475af95eb..03b610aec0 100644 --- a/ultron/objective/views.py +++ b/ultron/objective/views.py @@ -32,7 +32,9 @@ def skill_lookup(request): # Ignore queries shorter than length 2 if pattern is not None and len(pattern) > 2: model_results = Skill.objects.filter( - Q(short_label__icontains=pattern) | Q(long_label__icontains=pattern) + Q(short_label__icontains=pattern) + | Q(long_label__icontains=pattern) + | Q(notation__icontains=pattern) ) results = [ {"ID": x.id, "Name": str(x), "Notation": x.notation} for x in model_results