fix: minor fixes for issue relations list and retrival (#6444)
This commit is contained in:
parent
8f3a0be177
commit
586a320d86
3 changed files with 58 additions and 49 deletions
|
|
@ -117,6 +117,10 @@ export class IssueService extends APIService {
|
|||
if (response.data && this.serviceType === EIssueServiceType.ISSUES) {
|
||||
updateIssue({ ...response.data, is_local_update: 1 });
|
||||
}
|
||||
// add is_epic flag when the service type is epic
|
||||
if (response.data && this.serviceType === EIssueServiceType.EPICS) {
|
||||
response.data.is_epic = true;
|
||||
}
|
||||
return response?.data;
|
||||
})
|
||||
.catch((error) => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue