From f5727e4834e31efd50bc56e08717936717fbd0d8 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Mon, 12 Aug 2013 10:53:00 +0530 Subject: [PATCH] [minor] Increased autosuggest options to 20 --- webnotes/widgets/search.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webnotes/widgets/search.py b/webnotes/widgets/search.py index 1b712e5a35..745d618fb4 100644 --- a/webnotes/widgets/search.py +++ b/webnotes/widgets/search.py @@ -12,7 +12,7 @@ from startup.query_handlers import standard_queries # this is called by the Link Field @webnotes.whitelist() def search_link(doctype, txt, query=None, filters=None): - search_widget(doctype, txt, query, page_len=10, filters=filters) + search_widget(doctype, txt, query, page_len=20, filters=filters) webnotes.response['results'] = build_for_autosuggest(webnotes.response["values"]) # this is called by the search box