1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-26 22:46:53 -04:00

Simplify label translations in columns

Closes #8922
This commit is contained in:
Bogdan
2023-08-02 12:17:34 +03:00
parent 385c7971bb
commit 69b621b13a
23 changed files with 95 additions and 277 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
},
{