-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Stop auto lowercase of Name Field Attribute #678
Labels
Comments
🎉 This issue has been resolved in version 2.10.4 🎉 The release is available on: Your semantic-release bot 📦🚀 |
kevinchappell
added a commit
that referenced
this issue
Nov 6, 2018
pfranza
pushed a commit
to pfranza/formBuilder
that referenced
this issue
Nov 21, 2018
* fix(docs): Add missing documentation Improve CI * lock dependency versions except mi18n * fix(safename): do not toLowerCase name fields resolves kevinchappell#678 resolves kevinchappell#648
kevinchappell
added a commit
that referenced
this issue
Dec 12, 2018
# for free
to join this conversation on GitHub.
Already have an account?
# to comment
Hi,
I note Field Name attribute is forced into lowercase. How can I force it to retain whatever case (title, pascal, camel) I choose to use?
i need to omit the omit the toLowerCase method
utils.safename = str => {
return str
.replace(/\s/g, '-')
.replace(/[^a-zA-Z0-9\[\]\_-]/g, '')
// .toLowerCase()
}
please help
thanks
The text was updated successfully, but these errors were encountered: