mirror of
https://github.com/directus/directus.git
synced 2026-04-03 03:00:39 -04:00
removed toLowerCase for dbSafe fields (#9183)
This commit is contained in:
@@ -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, '');
|
||||
|
||||
Reference in New Issue
Block a user