You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a bug in Table component, here is an example:
In Table I have custom column of Links type, f.e with Modify and Delete links
Delete action runs simple SQL-query like "DELETE FROM some_table WHERE id = {{table1.selectedRow.id}}"
The problem is that the query runs before the value of selectedRow changes and this potentially results in user deleting the wrong record (check the attached screencast).
The solution is to fix the logic so that queries should be executed only after all table's promises are resolved