master #121

Merged
joseph merged 6 commits from master into dev 2025-03-14 19:36:11 +11:00
1 changed files with 1 additions and 6 deletions
Showing only changes of commit d1f889c996 - Show all commits

View File

@ -250,12 +250,7 @@ export const DataTableAll = ({
if (query !== '') {
setTData(
data.filter((obj) =>
Object.values(obj).some(
(value: any) =>
value !== null &&
value.toString().toLowerCase().includes(query.toLowerCase()),
),
),
Object.values(obj)?.find((c: any) => c.toString().normalize('NFC').toLowerCase().includes(query.normalize('NFC').toLowerCase())))
)
} else {
if (pagination) {