1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-18 21:35:51 -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
@@ -20,16 +20,12 @@ import styles from './FileBrowserModalContent.css';
const columns = [
{
name: 'type',
get label() {
return translate('Type');
},
label: () => translate('Type'),
isVisible: true
},
{
name: 'name',
get label() {
return translate('Name');
},
label: () => translate('Name'),
isVisible: true
}
];