From 187840b559f3615b9f37baa9e6fcd7f2ec54e76f Mon Sep 17 00:00:00 2001 From: Mihir Kandoi Date: Sat, 1 Aug 2026 09:23:09 +0530 Subject: [PATCH] fix: label the items table in the supplier selection dialog The grid template always renders its label line, so leaving the table unlabelled left an empty line hanging above the description. (cherry picked from commit 2e72846670dd251143a33811306b83ab869a431e) --- erpnext/stock/doctype/material_request/material_request.js | 1 + 1 file changed, 1 insertion(+) diff --git a/erpnext/stock/doctype/material_request/material_request.js b/erpnext/stock/doctype/material_request/material_request.js index fa342a1a79f..498542036e3 100644 --- a/erpnext/stock/doctype/material_request/material_request.js +++ b/erpnext/stock/doctype/material_request/material_request.js @@ -474,6 +474,7 @@ frappe.ui.form.on("Material Request", { { fieldname: "items", fieldtype: "Table", + label: __("Items"), cannot_add_rows: true, cannot_delete_rows: true, in_place_edit: true,