From d9567c0035e7b9cdba5dd3bfa53f165d2de86ed6 Mon Sep 17 00:00:00 2001 From: David Duque Date: Fri, 24 Apr 2020 15:50:01 +0100 Subject: [PATCH] Use proper emojis for status checks --- management/templates/system-status.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/management/templates/system-status.html b/management/templates/system-status.html index 09e94b7e..50fb0252 100644 --- a/management/templates/system-status.html +++ b/management/templates/system-status.html @@ -109,9 +109,9 @@ n.addClass(r[i].type) else n.addClass("status-" + r[i].type) - if (r[i].type == "ok") n.find('td.status').text("✓") - if (r[i].type == "error") n.find('td.status').text("✖") - if (r[i].type == "warning") n.find('td.status').text("?") + if (r[i].type == "ok") n.find('td.status').text("✔️") + if (r[i].type == "error") n.find('td.status').text("❌") + if (r[i].type == "warning") n.find('td.status').text("⚠️") n.find('td.message p').text(r[i].text) $('#system-checks tbody').append(n);