🐛 Fix issue sending the parameter project incorrectly (Invoiceninja) (#1619)

When creating a task, the project parameter was being send 'project' but it must be 'project_id'
This commit is contained in:
Ricardo Espinoza
2021-04-02 08:31:44 -04:00
committed by GitHub
parent ee0d6f8d9a
commit 7ce2de0e7c
5 changed files with 44 additions and 24 deletions

View File

@@ -3,6 +3,6 @@ export interface ITask {
custom_value1?: string;
custom_value2?: string;
description?: string;
project?: number;
project_id?: number;
time_log?: string;
}