locale added all case conversion

Signed-off-by: erdoganoksuz <erdoganoksuz95@gmail.com>
This commit is contained in:
erdoganoksuz
2021-03-12 15:06:01 +03:00
parent 37189b54ab
commit 9ca0e40094
31 changed files with 93 additions and 51 deletions
@@ -162,8 +162,8 @@ export const BitriseBuildsTable = ({
title: 'Branch',
customFilterAndSearch: (query, row: any) =>
`${row.message} ${row.workflow}`
.toUpperCase()
.includes(query.toUpperCase()),
.toLocaleUpperCase('en-US')
.includes(query.toLocaleUpperCase('en-US')),
field: 'message',
width: 'auto',
highlight: true,