From 4fe55c39793d95ad21ea63a22f85996c0144bf68 Mon Sep 17 00:00:00 2001 From: MiriSafra Date: Tue, 29 Oct 2024 16:33:36 +0200 Subject: [PATCH] add params Signed-off-by: MiriSafra --- client/src/app/api/rest.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/client/src/app/api/rest.ts b/client/src/app/api/rest.ts index 80f313204..a054969a3 100644 --- a/client/src/app/api/rest.ts +++ b/client/src/app/api/rest.ts @@ -371,6 +371,9 @@ export function getTasksByIds( .get(`${TASKS}`, { headers: headers, responseType: responseType, + params: { + filter: filterParam, + }, }) .then((response) => { return response.data;