aboutsummaryrefslogtreecommitdiffstats
path: root/web_src/js
diff options
context:
space:
mode:
authoryp05327 <576951401@qq.com>2023-03-27 19:34:09 +0900
committerGitHub <noreply@github.com>2023-03-27 18:34:09 +0800
commit22fec1650a01ad85c80381f07d3f9c5ed5216da9 (patch)
tree841bef1bce4b6af76d00d5169eba771cb628ad7d /web_src/js
parent6840258c9593c0b8ffaf88af0e239d03ed2314d2 (diff)
downloadgitea-22fec1650a01ad85c80381f07d3f9c5ed5216da9.tar.gz
gitea-22fec1650a01ad85c80381f07d3f9c5ed5216da9.zip
Add commit info in action page (#23210)
Add more commit info in action detail page. ![image](https://user-images.githubusercontent.com/18380374/222069905-a5ab28b1-1cea-4eec-b3b9-f1c74145cb82.png)
Diffstat (limited to 'web_src/js')
-rw-r--r--web_src/js/components/RepoActionView.vue27
1 files changed, 27 insertions, 0 deletions
diff --git a/web_src/js/components/RepoActionView.vue b/web_src/js/components/RepoActionView.vue
index 079c81921e..72801725d0 100644
--- a/web_src/js/components/RepoActionView.vue
+++ b/web_src/js/components/RepoActionView.vue
@@ -13,6 +13,15 @@
<i class="stop circle outline icon"/>
</button>
</div>
+ <div class="action-commit-summary">
+ {{ run.commit.localeCommit }}
+ <a :href="run.commit.link">{{ run.commit.shortSHA }}</a>
+ &nbsp;<span class="ui label">
+ <a :href="run.commit.branch.link">{{ run.commit.branch.name }}</a>
+ </span>
+ &nbsp;{{ run.commit.localePushedBy }}
+ <a :href="run.commit.pusher.link">{{ run.commit.pusher.displayName }}</a>
+ </div>
</div>
<div class="action-view-body">
<div class="action-view-left">
@@ -105,6 +114,20 @@ const sfc = {
// canRerun: false,
// },
],
+ commit: {
+ localeCommit: '',
+ localePushedBy: '',
+ shortSHA: '',
+ link: '',
+ pusher: {
+ displayName: '',
+ link: '',
+ },
+ branch: {
+ name: '',
+ link: '',
+ },
+ }
},
currentJob: {
title: '',
@@ -332,6 +355,10 @@ export function initRepositoryActionView() {
padding: 0 5px;
}
+.action-commit-summary {
+ padding: 10px 10px;
+}
+
/* ================ */
/* action view left */