ui: Fix comparator for boolean (#5246)

This commit is contained in:
davidjumani 2021-07-27 14:58:18 +05:30 committed by GitHub
parent 2643854173
commit a436869212
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ function filterNumber (value) {
}
function stringComparator (a, b) {
return a.localeCompare(b)
return a.toString().localeCompare(b.toString())
}
function numericComparator (a, b) {