Skip to content

Commit 0cd6339

Browse files
committed
add userAssigned activity type to cardChanged trigger
1 parent e20e8af commit 0cd6339

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/planview_leankit/sources/card-updated-on-board/card-updated-on-board.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ export default {
1717
return this.planviewLeankit.listActivity;
1818
},
1919
validate(d) {
20-
return d.type === "cardChanged";
20+
return d.type === "cardChanged" || d.type === "userAssigned";
2121
},
2222
getSummary(data) {
23-
return `Card '${data.data.card.title}' was updated on the board '${this.boardId.label}'`;
23+
return `Card '${data.data.card.title}' was updated on the board '${this.boardId?.label || this.boardId}'`;
2424
},
2525
},
2626
};

0 commit comments

Comments
 (0)