Merge pull request #4941 from erdoganoksuz/bug-fix/locale-case

use local version of all case conversion methods
This commit is contained in:
Fredrik Adelöw
2021-03-17 23:34:09 +01:00
committed by GitHub
31 changed files with 85 additions and 45 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,