Skip to content

Commit

Permalink
fix(explore): make to translate N/A
Browse files Browse the repository at this point in the history
  • Loading branch information
prosdev0107 committed Apr 8, 2022
1 parent f526732 commit 12f1a74
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ export const useFilteredTableData = (
() =>
data?.map((row: Record<string, any>) =>
Object.values(row).map(value =>
value ? value.toString().toLowerCase() : 'N/A',
value ? value.toString().toLowerCase() : t('N/A'),
),
) ?? [],
[data],
Expand Down

0 comments on commit 12f1a74

Please sign in to comment.