Merge pull request #15432 from Budibase/fix-old-row-selector

Fix selecting 'old row' in row updated trigger.
This commit is contained in:
Sam Rose 2025-01-23 17:41:31 +00:00 committed by GitHub
commit f3061dceec
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -293,7 +293,7 @@
type: RowSelector,
props: {
row: inputData["oldRow"] || {
tableId: inputData["row"].tableId,
tableId: inputData["row"]?.tableId,
},
meta: {
fields: inputData["meta"]?.oldFields || {},