Fix no data available for glossary tags

This commit is contained in:
Ushran Gouhar 2025-09-26 11:41:10 +05:30
parent a0bdc2231a
commit c58c008f21

View File

@ -79,7 +79,7 @@ const TreeContent: FC<TreeContentProps> = ({
if (!hasData) { if (!hasData) {
return ( return (
<Typography sx={{ p: 2, color: 'text.secondary' }} variant="body2"> <Typography sx={{ p: 2, color: 'text.secondary' }} variant="body2">
{noDataMessage || t('label.no-data-available')} {noDataMessage || t('message.no-data-available')}
</Typography> </Typography>
); );
} }