add missing config to get issues api call (#5955)

This commit is contained in:
rahulramesha 2024-11-05 17:50:23 +05:30 committed by GitHub
parent 45a5cf5119
commit 438d1bcfbd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -310,7 +310,7 @@ export class Storage {
} catch (e) {
logError(e);
const issueService = new IssueService();
return await issueService.getIssuesFromServer(workspaceSlug, projectId, queries);
return await issueService.getIssuesFromServer(workspaceSlug, projectId, queries, config);
}
const end = performance.now();