fix: 修复某些情况下编辑流水线,没有立即展示变更效果的bug

This commit is contained in:
xiaojunnuo
2025-11-07 01:15:05 +08:00
parent 0203aa2b6e
commit 65e53092e8
4 changed files with 16 additions and 5 deletions
@@ -241,7 +241,10 @@ export class PipelineService extends BaseService<PipelineEntity> {
fromType = "auto";
}
await this.certInfoService.updateDomains(pipeline.id, pipeline.userId || bean.userId, domains, fromType);
return bean;
return {
...bean,
version: pipeline.version,
};
}
/**