fix issues fetching while changing filters by making sure to pass the abort controller config to apis (#5948)

This commit is contained in:
rahulramesha
2024-11-04 20:16:56 +05:30
committed by GitHub
parent 71589f93ca
commit 3d2fe7841f

View File

@@ -292,7 +292,7 @@ export class Storage {
log(`Project ${projectId} is loading, falling back to server`);
}
const issueService = new IssueService();
return await issueService.getIssuesFromServer(workspaceSlug, projectId, queries);
return await issueService.getIssuesFromServer(workspaceSlug, projectId, queries, config);
}
const { cursor, group_by, sub_group_by } = queries;