From 4b9f32cc9bd7910af235596215d38a67056e7d3e Mon Sep 17 00:00:00 2001 From: Matthieu Leproux Date: Wed, 5 Oct 2022 10:10:51 +0200 Subject: [PATCH] related to #1742 changed icon for contact form and undefined lines in history --- admin/themes/default/js/history.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/admin/themes/default/js/history.js b/admin/themes/default/js/history.js index 6dbfd9387..d322d6a4f 100644 --- a/admin/themes/default/js/history.js +++ b/admin/themes/default/js/history.js @@ -371,12 +371,12 @@ function lineConstructor(line, id, imageDisplay) { newLine.find(".type-id").remove(); break; case "contact": - newLine.find(".type-icon i").addClass("line-icon icon-puzzle icon-yellow"); + newLine.find(".type-icon i").addClass("line-icon icon-mail-1 icon-yellow"); newLine.find(".type-name").html(str_contact_form); newLine.find(".type-id").remove(); break; default: - newLine.find(".type-icon i").addClass("line-icon icon-help-circled icon-grey"); + newLine.find(".type-icon i").addClass("line-icon icon-help-puzzle icon-grey"); newLine.find(".type-name").html(line.SECTION); newLine.find(".type-id").remove(); break;