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];