Write your own class using css text-transform , e.g.
.tolowercase { text-transform: lowercase; } .tocapitalize { text-transform: capitalize; }
And apply it to the enter / button.
If you want htis behavior throughout the system to override the .md-button class in your css,
.md-button { text-transform: capitalize !important; }
source share