Issue with Clearing table.newRows After Adding New Row in Retool v3.64.0-edge

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:

Screenshot from 2024-07-01 16-30-57

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.

I had the same problem.

I had 2 events on my save handler (one Insert, one Update) the Update event was trying to fire, preventing the newRows from clearing. I had to set an 'Only Run When' clause to get it to work.

image