From e391b054d3bbdf52a3e6cfe0e31a2b65b88349ee Mon Sep 17 00:00:00 2001 From: andryyy Date: Fri, 29 Oct 2021 06:49:32 +0200 Subject: [PATCH] [Web] Remove service chevrons --- data/web/js/site/debug.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/data/web/js/site/debug.js b/data/web/js/site/debug.js index ba08248f..8f2aa663 100644 --- a/data/web/js/site/debug.js +++ b/data/web/js/site/debug.js @@ -707,9 +707,7 @@ jQuery(function($){ $.each(data, function (i, item) { if (item === null) { return true; } item.username = escapeHtml(item.username); - if (item.service == "smtp") { item.service = '
' + item.service.toUpperCase() + '
'; } - else if (item.service == "imap") { item.service = '
' + item.service.toUpperCase() + '
'; } - else { item.service = '
' + item.service.toUpperCase() + '
'; } + item.service = '
' + item.service.toUpperCase() + '
'; }); } else if (table == 'general_syslog') { $.each(data, function (i, item) {