Having worked with components for over a year now, I keep having issues where the component mapping schema for a table gets corrupted. Basically, the component doesn't respect the column names in the input table and will sporadically change the mapping so that the columns are incorrect.
IE if I have a table in the component input parameter like this:
Table({Col1:"col1 value", Col2:"col2 value"})
then in the powerapp where I have the instance of the component, I have that same table as the input, and I show that in a datatable, I'd expect to see:
Col1 Col2
col1 value col2 value
but it's really common for components to do this:
Col1 Col2
col2 value col1 value
It's been that way ever since I started with components, well over a year. any word on when Microsoft might address this bug?