Merge branch 'feature/IO-2456-Report-Filters-From-Master' into release/2024-02-16

This commit is contained in:
Dave Richer
2024-02-15 21:03:30 -05:00

View File

@@ -210,7 +210,7 @@ function RenderFilters({templateId, form}) {
state.sorters
? state.sorters.map((f) => ({
value: f.name,
label: t(f.translation),
label: f?.translation ? (t(f.translation) === f.translation ? f.label : t(f.translation)) : f.label,
}))
: []
}