Increase autocomplete limit for repo inheritance in access page to 50

The backend results are alphabetically sorted, so it can happen that the
exact match is cut off. Of course, there is still a chance of this to
happen with a limit of 50, but it is much less likely, and the proper
fix is much more work. And this fix is extremely simple and easy.

Bug: Issue 10696
Change-Id: I551880b45b2e773e63d7435af4ff4f16c1bc7b9c
(cherry picked from commit 3e364262e1)
This commit is contained in:
brohlfs
2019-04-08 16:37:22 +02:00
committed by Paladox none
parent 5d6741adf4
commit c2b08fc5d7

View File

@@ -21,7 +21,7 @@
const NOTHING_TO_SAVE = 'No changes to save.'; const NOTHING_TO_SAVE = 'No changes to save.';
const MAX_AUTOCOMPLETE_RESULTS = 20; const MAX_AUTOCOMPLETE_RESULTS = 50;
/** /**
* Fired when save is a no-op * Fired when save is a no-op