Closed jordykoppen closed 2 years ago
Hey, I'm running into a bug in production concerning the Table plugin:
Whenever I rename a column, the order of the data being returned by Dato API changes.
API returns:
{ "columns": [ "Column A", "Column B", "Column C" ], "data": [ { "Column A": "Value 1", "Column B": "Value 2", "Column C": "Value 3" } ] }
However, if we rename Column B to Column B2 through the Table Editor, the API result will be:
Column B
Column B2
{ "columns": [ "Column A", "Column B", "Column C" ], "data": [ { "Column A": "Value 1", "Column C": "Value 3", "Column B2": "Value 2" } ] }
Fixed in the latest version of the plugin, please upgrade! :)
Hey, I'm running into a bug in production concerning the Table plugin:
Whenever I rename a column, the order of the data being returned by Dato API changes.
API returns:
However, if we rename
Column B
toColumn B2
through the Table Editor, the API result will be: