From 2b263c65281030fd51dd603f5ef54e94517020d2 Mon Sep 17 00:00:00 2001 From: Ejaaz Khan Date: Tue, 6 Jan 2026 12:20:13 +0530 Subject: [PATCH] fix(awesomebar): recent doctype name not showing --- frappe/public/js/frappe/utils/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/public/js/frappe/utils/utils.js b/frappe/public/js/frappe/utils/utils.js index dc6f926040..4116607f42 100644 --- a/frappe/public/js/frappe/utils/utils.js +++ b/frappe/public/js/frappe/utils/utils.js @@ -945,7 +945,7 @@ Object.assign(frappe.utils, { return (__(route[3]) || __(route[1])).bold() + " " + __("Report"); } if (route[0] === "List") { - __(route[1]).bold() + " " + __("List"); + return __(route[1]).bold() + " " + __("List"); } if (route[0] === "modules") { return __(route[1]).bold() + " " + __("Module");