From ad9979f9c6cfbca7b14ece1c9d80a63923db09e4 Mon Sep 17 00:00:00 2001 From: David Duque Date: Sat, 25 Apr 2020 04:26:24 +0100 Subject: [PATCH] Make the Show More link an actual button --- management/templates/system-status.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/management/templates/system-status.html b/management/templates/system-status.html index abb13fdd..c83b649f 100644 --- a/management/templates/system-status.html +++ b/management/templates/system-status.html @@ -103,7 +103,7 @@ function (r) { $('#system-checks tbody').html(""); for (var i = 0; i < r.length; i++) { - var n = $("

"); + var n = $("

"); if (i == 0) n.addClass('first') if (r[i].type == "heading") n.addClass(r[i].type) @@ -116,7 +116,7 @@ $('#system-checks tbody').append(n); if (r[i].extra.length > 0) { - n.find('.showhide').show().text("show more").click(function () { + n.find('.showhide').show().text("Show More").click(function () { $(this).hide(); $(this).parent().find('.extra').fadeIn(); return false;