From 0fd9fc48f33a5d787ca6a0a6f2063b53a1b30080 Mon Sep 17 00:00:00 2001 From: Mihir Kandoi Date: Wed, 25 Feb 2026 10:19:10 +0530 Subject: [PATCH] fix: item code shows undefined (cherry picked from commit 9ef7f057126c0d3b10474f32dee7b55881fdae24) --- erpnext/public/js/utils.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/erpnext/public/js/utils.js b/erpnext/public/js/utils.js index 3d3b86a15c5..41e7a7cad81 100755 --- a/erpnext/public/js/utils.js +++ b/erpnext/public/js/utils.js @@ -1081,6 +1081,8 @@ function add_link_title(value, doc, df, title_field) { } else { return value; } + } else { + return value; } }