mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
Limit matches to the 5 "most matchy" ones
This commit is contained in:
parent
aada0ca5af
commit
85bce24e30
@ -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()
|
||||
|
Loading…
Reference in New Issue
Block a user