I am trying to create component with gallery and text fields for browsing and editing data which is in a Dataverse table.
For the component I have defined a custom property of the type, "Table".
The parameter has default value, Table({Name: "TestName}), as dummy content.
Using the parameter inside the component works fine. I can also create input from the app using the component such as Table({Name: "NewTestName"}).
However, I can't seem to figure out how to correctly pass a table from dataverse.
I am simply providing the table name (also added to the App) into the custom property in the component included in the App.
Error message: "The record passed in has none of the expected fields: Name".
The table in Dataverse does have a column called "Name" (and additionally all of the automatically create columns).
Any ideas about what I am missing here?