2
0
mirror of https://github.com/inventree/InvenTree.git synced 2026-05-04 00:33:34 +00:00

Limit matches to the 5 "most matchy" ones

This commit is contained in:
Oliver Walters
2021-01-15 12:32:27 +11:00
parent aada0ca5af
commit 85bce24e30
+3 -1
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()