Skip to content

Commit

Permalink
Merge pull request #2733 from bomoko/hotfix/patch_id_types_for_tasks
Browse files Browse the repository at this point in the history
Sends task id as string for lagoon-kbd
  • Loading branch information
Toby Bellwood authored Jun 29, 2021
2 parents e62adfb + f083469 commit 67ca713
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions services/api/src/resources/task/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,8 @@ export const Helpers = (sqlClientPool: Pool) => ({
);
const projectData = R.prop(0, rows);

taskData.id = taskData.id.toString();

try {
await createTaskTask({
task: taskData,
Expand Down

0 comments on commit 67ca713

Please sign in to comment.