Added taskURL to task fetch api fields (#865)

This commit is contained in:
darth-coder00 2021-10-19 22:14:04 +05:30 committed by GitHub
parent 1ae2e528a9
commit 1e2991c3f7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -172,7 +172,7 @@ const MyPipelinePage = () => {
let promiseArr: Array<AxiosPromise> = [];
if (tasks?.length) {
promiseArr = tasks.map((task) =>
getTaskById(task.id, ['service', 'tags'])
getTaskById(task.id, ['service', 'tags', 'taskURL'])
);
await Promise.allSettled(promiseArr).then(
(res: PromiseSettledResult<AxiosResponse>[]) => {