pull/265/head
xiaojunnuo 2024-12-03 00:43:43 +08:00
parent 30db27980c
commit febe87508c
2 changed files with 4 additions and 0 deletions

View File

@ -72,6 +72,9 @@ export class HistoryController extends CrudController<HistoryService> {
sort: body.sort,
buildQuery,
});
return this.ok(res);
}

View File

@ -41,6 +41,7 @@ export class HistoryService extends BaseService<HistoryEntity> {
const res = await super.page(pageReq);
for (const item of res.records) {
item.fillPipelineTitle();
delete item.pipeline;
}
return res;
}