From 26f678ed3c09557877acfc2807bb7fc347a635ea Mon Sep 17 00:00:00 2001 From: Suraj Shetty Date: Sat, 21 Feb 2026 20:55:40 +0530 Subject: [PATCH] style: fix formatting issues --- .../public/js/frappe/ui/group_by/group_by.js | 23 ++++++++++--------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/frappe/public/js/frappe/ui/group_by/group_by.js b/frappe/public/js/frappe/ui/group_by/group_by.js index 3dc963f5ec..dfb8e06dd4 100644 --- a/frappe/public/js/frappe/ui/group_by/group_by.js +++ b/frappe/public/js/frappe/ui/group_by/group_by.js @@ -386,17 +386,18 @@ frappe.ui.GroupBy = class { const fields = this.report_view.meta.fields .concat(standard_fields) - .filter((f) => - [ - "Select", - "Link", - "Data", - "Int", - "Check", - "Dynamic Link", - "Autocomplete", - "Date", - ].includes(f.fieldtype) && !f.is_virtual + .filter( + (f) => + [ + "Select", + "Link", + "Data", + "Int", + "Check", + "Dynamic Link", + "Autocomplete", + "Date", + ].includes(f.fieldtype) && !f.is_virtual ); this.group_by_fields[this.doctype] = fields.sort((a, b) => __(cstr(a.label)).localeCompare(cstr(__(b.label)))