From 1a10d0748eae11ab00150d03dabc79b5cde02b1b Mon Sep 17 00:00:00 2001 From: FreddleSpl0it <75116288+FreddleSpl0it@users.noreply.github.com> Date: Tue, 21 Jul 2026 12:07:25 +0200 Subject: [PATCH] [Imapsync] Move "open logs" to action buttons --- data/web/js/site/mailbox.js | 7 +------ data/web/js/site/user.js | 7 +------ 2 files changed, 2 insertions(+), 12 deletions(-) diff --git a/data/web/js/site/mailbox.js b/data/web/js/site/mailbox.js index f03d19337..494d6beda 100644 --- a/data/web/js/site/mailbox.js +++ b/data/web/js/site/mailbox.js @@ -2166,7 +2166,6 @@ jQuery(function($){ url: "/api/v1/get/syncjobs/all/no_log", dataSrc: function(json){ $.each(json, function (i, item) { - item.log = '' + lang.open_logs + '' item.user2 = escapeHtml(item.user2); if (!item.exclude > 0) { item.exclude = '-'; @@ -2178,6 +2177,7 @@ jQuery(function($){ if (tokenBadge) item.server_w_port += '
' + tokenBadge + '
'; item.action = '
' + ' ' + lang.edit + '' + + ' ' + lang.open_logs + '' + ' ' + lang.remove + '' + '
'; item.chkbox = ''; @@ -2257,11 +2257,6 @@ jQuery(function($){ data: 'exit_status', defaultContent: '' }, - { - title: 'Log', - data: 'log', - defaultContent: '' - }, { title: lang.active, data: 'active', diff --git a/data/web/js/site/user.js b/data/web/js/site/user.js index 7bd6e3151..abc0a134b 100644 --- a/data/web/js/site/user.js +++ b/data/web/js/site/user.js @@ -279,7 +279,6 @@ jQuery(function($){ dataSrc: function(data){ $.each(data, function (i, item) { item.user1 = escapeHtml(item.user1); - item.log = '' + lang.open_logs + '' if (!item.exclude > 0) { item.exclude = '-'; } else { @@ -291,6 +290,7 @@ jQuery(function($){ if (acl_data.syncjobs === 1) { item.action = '
' + ' ' + lang.edit + '' + + ' ' + lang.open_logs + '' + ' ' + lang.remove + '' + '
'; item.chkbox = ''; @@ -375,11 +375,6 @@ jQuery(function($){ data: 'exit_status', defaultContent: '' }, - { - title: 'Log', - data: 'log', - defaultContent: '' - }, { title: lang.active, data: 'active',