removed toLowerCase for dbSafe fields (#9183)

This commit is contained in:
Alexander
2021-10-27 19:42:16 +03:00
committed by GitHub
parent 2934b6ca76
commit 83349003e7

View File

@@ -248,7 +248,6 @@ export default defineComponent({
}
if (props.dbSafe === true) {
value = value.toLowerCase();
value = value.replace(/\s/g, '_');
// Replace é -> e etc
value = value.normalize('NFD').replace(/[\u0300-\u036f]/g, '');