mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-24 20:24:05 -08:00
fix(Todoist Node): Fix issue with section id being ignored (#6799)
This commit is contained in:
parent
3801130c7b
commit
749468e4fa
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue