From 00c94afa78b5b45a2197974eb514e7a4b47f6976 Mon Sep 17 00:00:00 2001 From: Sakthivel Murugan S <129778327+ssakthivelmurugan@users.noreply.github.com> Date: Tue, 7 Apr 2026 12:08:52 +0530 Subject: [PATCH] fix: task gantt popup text not visible in light theme (#53882) --- erpnext/projects/doctype/task/task_list.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/erpnext/projects/doctype/task/task_list.js b/erpnext/projects/doctype/task/task_list.js index 17b0ed2c7fa..2516a327d44 100644 --- a/erpnext/projects/doctype/task/task_list.js +++ b/erpnext/projects/doctype/task/task_list.js @@ -35,30 +35,30 @@ frappe.listview_settings["Task"] = { }, gantt_custom_popup_html: function (ganttobj, task) { let html = ` - + ${ganttobj.name} `; if (task.project) { html += `

${__("Project")}: - + ${task.project}

`; } html += `

${__("Progress")}: - ${ganttobj.progress}% + ${ganttobj.progress}%

`; if (task._assign) { const assign_list = JSON.parse(task._assign); const assignment_wrapper = ` Assigned to: - + ${assign_list.map((user) => frappe.user_info(user).fullname).join(", ")} `;