We slugify the title to generate the component code, but if the title has a "." in it, e.g. "Good vs. Evil", then the resulting code "good_vs._evil" raises a validation error because our expression forbids periods.
Resolution: loosen our validation rules so that periods are allowed. These types of identifiers are common as part of opaque keys, e.g. "6.002x".
We slugify the title to generate the component code, but if the title has a "." in it, e.g. "Good vs. Evil", then the resulting code "good_vs._evil" raises a validation error because our expression forbids periods.
Resolution: loosen our validation rules so that periods are allowed. These types of identifiers are common as part of opaque keys, e.g. "6.002x".