Fix translations for columns

This commit is contained in:
Bogdan 2023-08-21 04:05:59 +03:00
parent 246ee27df5
commit 42308ada89
19 changed files with 157 additions and 64 deletions

View file

@ -20,12 +20,12 @@ import styles from './FileBrowserModalContent.css';
const columns = [
{
name: 'type',
label: translate('Type'),
label: () => translate('Type'),
isVisible: true
},
{
name: 'name',
label: translate('Name'),
label: () => translate('Name'),
isVisible: true
}
];