Skip to content

Commit

Permalink
fix(Todoist Node): Fix issue with section id being ignored (#6799)
Browse files Browse the repository at this point in the history
  • Loading branch information
Joffcom authored Jul 31, 2023
1 parent 3801130 commit 749468e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/nodes-base/nodes/Todoist/v2/OperationHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,9 @@ export class GetAllHandler implements OperationHandler {
if (filters.projectId) {
qs.project_id = filters.projectId as string;
}
if (filters.sectionId) {
qs.section_id = filters.sectionId as string;
}
if (filters.labelId) {
qs.label = filters.labelId as string;
}
Expand Down

0 comments on commit 749468e

Please sign in to comment.