Simplify column translations

(cherry picked from commit 551ea18caf50353c4c8dbeba5e42d266dbbfb54d)

Closes #3958
This commit is contained in:
Bogdan 2023-08-04 03:38:24 +03:00
parent 2cc4d639e9
commit 246ee27df5
10 changed files with 41 additions and 79 deletions

View file

@ -19,12 +19,12 @@ import LogFilesTableRow from './LogFilesTableRow';
const columns = [
{
name: 'filename',
label: translate('Filename'),
label: () => translate('Filename'),
isVisible: true
},
{
name: 'lastWriteTime',
label: translate('LastWriteTime'),
label: () => translate('LastWriteTime'),
isVisible: true
},
{