From 9b6638246328cfc166b3793b4519183e84cdd1b5 Mon Sep 17 00:00:00 2001 From: Vishnu Priya Baskaran <145791817+ervishnucs@users.noreply.github.com> Date: Sat, 11 Jul 2026 16:09:26 +0530 Subject: [PATCH] =?UTF-8?q?fix(financial=5Fstatement):=20render=20columnar?= =?UTF-8?q?=20financial=20statements=20instea=E2=80=A6=20(#56921)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- erpnext/public/js/financial_statements.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/public/js/financial_statements.js b/erpnext/public/js/financial_statements.js index b1bf9fff072..8bf15017476 100644 --- a/erpnext/public/js/financial_statements.js +++ b/erpnext/public/js/financial_statements.js @@ -28,8 +28,8 @@ erpnext.financial_statements = { }, is_blank_row: function (data) { + if (!data || data.segment_values) return false; return ( - data && !data.account && !data.accounts && !data.child_accounts &&