fix(Data Import): show failed import logs

This commit is contained in:
14987 2023-12-27 15:06:24 +05:30
parent 6367194620
commit 2e730d7056
No known key found for this signature in database
GPG key ID: ED4A241EAB170273

View file

@ -449,7 +449,6 @@ frappe.ui.form.on("Data Import", {
}
} else {
let messages = JSON.parse(log.messages || "[]")
.map(JSON.parse)
.map((m) => {
let title = m.title ? `<strong>${m.title}</strong>` : "";
let message = m.message ? `<div>${m.message}</div>` : "";