|
|
@@ -76,8 +76,11 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
|
|
|
- normalizeAccent (string) {
|
|
|
- return string.normalize('NFD').replace(/[\u0300-\u036f]/g, '')
|
|
|
+ normalizeAccent (value) {
|
|
|
+ if (typeof value !== 'string') {
|
|
|
+ return value
|
|
|
+ }
|
|
|
+ return value.normalize('NFD').replace(/[\u0300-\u036f]/g, '')
|
|
|
},
|
|
|
|
|
|
updateFieldGroup (columns) {
|