Merge pull request #1233 from SchrodingersGat/limit-matches

Limit matches to the 5 "most matchy" ones
This commit is contained in:
Oliver 2021-01-15 12:55:39 +11:00 committed by GitHub
commit 8f4ae14f2d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -655,7 +655,9 @@ class PartCreate(AjaxCreateView):
matches = match_part_names(name)
if len(matches) > 0:
context['matches'] = matches
# Limit to the top 5 matches (to prevent clutter)
context['matches'] = matches[:5]
# Enforce display of the checkbox
form.fields['confirm_creation'].widget = CheckboxInput()