mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -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) {
|
if (filters.projectId) {
|
||||||
qs.project_id = filters.projectId as string;
|
qs.project_id = filters.projectId as string;
|
||||||
}
|
}
|
||||||
|
if (filters.sectionId) {
|
||||||
|
qs.section_id = filters.sectionId as string;
|
||||||
|
}
|
||||||
if (filters.labelId) {
|
if (filters.labelId) {
|
||||||
qs.label = filters.labelId as string;
|
qs.label = filters.labelId as string;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue