Fix localization label

This commit is contained in:
Alexander Burmatov 2024-11-13 23:42:26 +03:00 committed by Alexander Stepchenko
parent 213be81f1c
commit b238cdc9a1

View File

@ -77,7 +77,7 @@ function FilterCard(props) {
const filterRows = filters;
return filterRows.map((filter, index) => {
return (
<Tooltip key={index} title={filter.tooltip ?? filter.label} placement="top" arrow>
<Tooltip key={index} title={filter.tooltip ?? t(filter.label)} placement="top" arrow>
<FormControlLabel
className={classes.formControl}
componentsProps={{ typography: { variant: 'body2', className: classes.cardContentText } }}