mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-22 12:19:09 +00:00
fix(Todoist Node): Fix issue with section id being ignored (#6799)
This commit is contained in:
@@ -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;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user