From e6a6c13355652e3fe379d36cb15d76b8dc82fd85 Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Sat, 11 Jul 2026 10:41:49 +0000 Subject: [PATCH] =?UTF-8?q?fix(financial=5Fstatement):=20render=20columnar?= =?UTF-8?q?=20financial=20statements=20instea=E2=80=A6=20(backport=20#5692?= =?UTF-8?q?1)=20(#57053)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Vishnu Priya Baskaran <145791817+ervishnucs@users.noreply.github.com> --- 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 58a8803eca0..87a1dd5c766 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 &&