From 2e72846670dd251143a33811306b83ab869a431e 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. --- 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 da6d1a596b2..530549f325c 100644 --- a/erpnext/stock/doctype/material_request/material_request.js +++ b/erpnext/stock/doctype/material_request/material_request.js @@ -468,6 +468,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,