Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

增加构建详情的查看配置项,在构建详情界面点击插件时,默认进入的是 日志 or 配置 Tab页面。 #10808 #10884

Merged
merged 14 commits into from
Oct 29, 2024
Merged
Changes from 1 commit
Commits
Show all changes
14 commits
Select commit Hold shift + click to select a range
83abdc5
增加构建详情的查看配置项,在构建详情界面点击插件时,默认进入的是 日志 or 配置 Tab页面。 #10808
useryuyu Aug 26, 2024
e6961e7
增加构建详情的查看配置项,在构建详情界面点击插件时,默认进入的是 日志 or 配置 Tab页面。 #10808
useryuyu Aug 28, 2024
6b36e30
Merge branch 'master' of https://github.com/TencentBlueKing/bk-ci int…
useryuyu Sep 14, 2024
abdfd73
Merge branch 'master' of https://github.com/TencentBlueKing/bk-ci int…
useryuyu Sep 14, 2024
adb00b0
增加构建详情的查看配置项,在构建详情界面点击插件时,默认进入的是 日志 or 配置 Tab页面。 #10808
useryuyu Sep 14, 2024
84c2653
增加构建详情的查看配置项,在构建详情界面点击插件时,默认进入的是 日志 or 配置 Tab页面。 #10808
useryuyu Sep 18, 2024
d37508b
增加构建详情的查看配置项,在构建详情界面点击插件时,默认进入的是 日志 or 配置 Tab页面。 #10808
useryuyu Sep 18, 2024
c1678f9
增加构建详情的查看配置项,在构建详情界面点击插件时,默认进入的是 日志 or 配置 Tab页面。 #10808
useryuyu Sep 20, 2024
bdd660c
Merge branch 'master' of https://github.com/TencentBlueKing/bk-ci int…
useryuyu Oct 23, 2024
4655f3a
Merge branch 'master' of https://github.com/TencentBlueKing/bk-ci int…
useryuyu Oct 23, 2024
660ae58
增加构建详情的查看配置项,在构建详情界面点击插件时,默认进入的是 日志 or 配置 Tab页面。 #10808
useryuyu Oct 24, 2024
b13fe4d
增加构建详情的查看配置项,在构建详情界面点击插件时,默认进入的是 日志 or 配置 Tab页面。 #10808
useryuyu Oct 24, 2024
40106f3
增加构建详情的查看配置项,在构建详情界面点击插件时,默认进入的是 日志 or 配置 Tab页面。 #10808
useryuyu Oct 25, 2024
9c239fb
增加构建详情的查看配置项,在构建详情界面点击插件时,默认进入的是 日志 or 配置 Tab页面。 #10808
useryuyu Oct 25, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@
<plugin
:exec-detail="execDetail"
:editing-element-pos="editingElementPos"
:properties="curProject.properties.pluginDetailsDisplayOrder"
:properties="curProject.properties?.pluginDetailsDisplayOrder"
@close="hideSidePanel"
/>
</template>
Expand Down Expand Up @@ -257,6 +257,7 @@
return ['RUNNING', 'QUEUE'].includes(this.execDetail?.status)
},
panels () {
console.log(this.execDetail, '------------------', this.curProject)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

这个去掉

return [
{
name: 'executeDetail',
Expand Down
Loading