You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Adding JsonProperty attribute to RichTextPropertyItem.cs fixed it for me.
public class RichTextPropertyItem : SimplePropertyItem
{
public override string Type => "rich_text";
[JsonProperty("rich_text")]
public RichTextBase RichText { get; set; }
}
The text was updated successfully, but these errors were encountered:
Adding JsonProperty attribute to RichTextPropertyItem.cs fixed it for me.
The text was updated successfully, but these errors were encountered: