fix(Todoist Node): Fix issue with section id being ignored (#6799)

This commit is contained in:
Jon 2023-07-31 11:25:34 +01:00 committed by GitHub
parent 3801130c7b
commit 749468e4fa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;
}