Skip to content

Commit

Permalink
Merge pull request TencentBlueKing#10963 from vhwweng/issue_10865
Browse files Browse the repository at this point in the history
bug:上架流水线模板到研发商店,但是新建流水线的时候在“研发商店”Tab搜不出来 TencentBlueKing#10865
  • Loading branch information
bkci-bot authored Sep 13, 2024
2 parents 6a7594d + 1c9dcd5 commit 78d7bb6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/frontend/devops-pipeline/src/views/CreatePipeline.vue
Original file line number Diff line number Diff line change
Expand Up @@ -386,6 +386,11 @@
}, [])
console.log(this.applySettings)
}
},
searchName (val) {
if (this.activePanel === 'store') {
this.requestMarkTemplates(true)
}
}
},
created () {
Expand Down Expand Up @@ -436,7 +441,8 @@
const param = {
page: this.page,
pageSize: this.pageSize,
projectCode: this.$route.params.projectId
projectCode: this.$route.params.projectId,
keyword: this.searchName
}
this.requestStoreTemplate(param).then((res) => {
this.page++
Expand Down
1 change: 1 addition & 0 deletions src/frontend/locale/pipeline/zh-CN.json
Original file line number Diff line number Diff line change
Expand Up @@ -731,6 +731,7 @@
"name": "产出物名称",
"filePath": "文件路径",
"size": "文件大小",
"created": "创建时间",
"lastModified": "最后修改时间",
"pipelineErrorGuide": "流水线故障排查指南",
"pipelineErrorType": "错误类型",
Expand Down

0 comments on commit 78d7bb6

Please sign in to comment.