TextArea not being re-populated in Update operations

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 }));
}

There’s also something that looks buggish in the rendered HTML. Just a heads-up:

Ok thanks, should now be fixed in this commit which is now available on latest v6.6.1+ on GitHub Packages.

1 Like

Awesome, thanks.
How do I authenticate the nuget feed from GitHub Packages?

OK, I found a page explaining