I’m using the following code to set all Command and Description fields to be type TextArea, but when a record is edited again the value is not repopulated with the current value:
if (type.IsCrudCreateOrUpdate())
{
type.Properties?.Where(p => p.Name is "Comment" or "Description")
.Each(p => p.AddAttribute(new InputAttribute { Type = Input.Types.Textarea }));
}