Hi,
I'm currently using self-hosted Retool version 3.64.0-edge and have encountered an issue:
I added a "Add New Row" button to the Toolbar, which allows to insert a new record into the table. The saving functionality works correctly; however, after saving, I always see the following popup:
The table.newRows still contains the new object, and I am unable to clear it to prevent this popup. I have tried the following approaches without success:
table.newRows = undefined;
table.newRows = null;
table.newRows = []
Only refreshing the page helps me to get rid of this popup.
Could you please advise on how to resolve this issue?
Thank you.