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 = '';
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 = '';
item.chkbox = '';
@@ -375,11 +375,6 @@ jQuery(function($){
data: 'exit_status',
defaultContent: ''
},
- {
- title: 'Log',
- data: 'log',
- defaultContent: ''
- },
{
title: lang.active,
data: 'active',