Fix(editor): Data Table does not auto-refresh dependent columns (e.g., updated_at) after update#2073
Closed
everettbu wants to merge 4 commits into
Closed
Fix(editor): Data Table does not auto-refresh dependent columns (e.g., updated_at) after update#2073everettbu wants to merge 4 commits into
everettbu wants to merge 4 commits into
Conversation
Author
|
Upstream PR was closed or merged. Code is synced via branch mirror. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Mirror of n8n-io/n8n#20765
Original author: Rakib-mbstu
Summary
Fixes the issue where editing a cell in the Data Table only updates the edited field, leaving dependent columns like
updated_atstale until page reload.After a cell value change:
updateRowwith the new data.fetchRowByIdto get server-generated fields (e.g., newupdatedAttimestamp).rowDatawith the fresh data.setGridDatato refresh the AG Grid view.This ensures the UI reflects backend changes without requiring a full page reload.
Screencast.from.2025-10-14.18-08-09.mp4
Related Linear tickets, Github issues, and Community forum posts
fixes #20740
Review / Merge checklist
release/backport(if the PR is an urgent fix that needs to be backported)Additional Notes
updated_atcorrectly—this is purely a frontend refresh fix.