1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-20 21:54:58 -04:00

Simplify column translations

This commit is contained in:
Bogdan
2023-08-04 03:38:24 +03:00
committed by GitHub
parent 9188a9971b
commit 551ea18caf
12 changed files with 76 additions and 224 deletions
+2 -6
View File
@@ -19,16 +19,12 @@ import LogFilesTableRow from './LogFilesTableRow';
const columns = [
{
name: 'filename',
get label() {
return translate('Filename');
},
label: () => translate('Filename'),
isVisible: true
},
{
name: 'lastWriteTime',
get label() {
return translate('LastWriteTime');
},
label: () => translate('LastWriteTime'),
isVisible: true
},
{