sp-client-custom-fields
sp-client-custom-fields copied to clipboard
PropertyFieldCustomList - CustomListFieldType.string displayed in upper case
The CustomListFieldType.string in PropertyFieldCustomList is displaying data in uppercase in version 1.3.7. This is because in CSS (PropertyFields.module) text-transform is set to UpperCase
Can this be fixed asap?
This also affects the description btw
Try css styling to fix this, I fix this using following style;
.ms-Modal-scrollableContent {
.ms-Dialog-inner #input-Title {
text-transform: capitalize;
}