Web: remove debug console.log() calls

This commit is contained in:
Sybren A. Stüvel 2022-05-06 11:59:11 +02:00
parent a70438ec4f
commit 7bda798009
2 changed files with 0 additions and 2 deletions

View File

@ -29,7 +29,6 @@ export default {
title: 'Status', field: 'status', sorter: 'string',
formatter(cell, formatterParams) { // eslint-disable-line no-unused-vars
const cellValue = cell.getData();
console.log(cellValue);
return '<span title="' + cellValue.status + '" class="indicator status-' + cellValue.status + '"></span>';
}
},

View File

@ -31,7 +31,6 @@ export default {
title: 'Status', field: 'status', sorter: 'string',
formatter(cell, formatterParams) { // eslint-disable-line no-unused-vars
const cellValue = cell.getData();
console.log(cellValue);
return '<span title="' + cellValue.status + '" class="indicator status-' + cellValue.status + '"></span>';
}
},