From fc32189a8854a4735ebbb66d8ab0ac429569af1c Mon Sep 17 00:00:00 2001 From: Sagar Vora <16315650+sagarvora@users.noreply.github.com> Date: Sat, 10 Jan 2026 13:07:23 +0530 Subject: [PATCH] chore: improve docstring --- frappe/public/js/frappe/form/controls/link.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frappe/public/js/frappe/form/controls/link.js b/frappe/public/js/frappe/form/controls/link.js index f22246b5a7..3439a290f7 100644 --- a/frappe/public/js/frappe/form/controls/link.js +++ b/frappe/public/js/frappe/form/controls/link.js @@ -375,9 +375,9 @@ frappe.ui.form.ControlLink = class ControlLink extends frappe.ui.form.ControlDat } /** - * Determine if we should use GET (enables HTTP caching) or POST. - * Use GET for empty searches with filters that fit in URL. - * Use POST for searches with text or large filters. + * Helps determine if we should use GET (enables HTTP caching) or POST. + * Use GET for filters that fit in URL. + * Use POST for large filters. */ are_filters_large(filters, max_get_size = 2000) { if (!filters) return [false, filters];