Skip to content

Commit

Permalink
fix(plugin-workflow): fix revision with new properties (#3487)
Browse files Browse the repository at this point in the history
  • Loading branch information
mytharcher committed Feb 4, 2024
1 parent f1a3c17 commit dcd732d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export default class extends Trigger {
let payload = row;
if (trigger[1]) {
const paths = trigger[1].split('.');
for await (const field of paths) {
for (const field of paths) {
if (payload.get(field)) {
payload = payload.get(field);
} else {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,9 @@ export async function revision(context: Context, next) {
? {
key: filter.key,
title: origin.title,
triggerTitle: origin.triggerTitle,
allExecuted: origin.allExecuted,
sync: origin.sync,
}
: values;

Expand Down

0 comments on commit dcd732d

Please sign in to comment.