mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 10:56:10 +01:00 
			
		
		
		
	fix: render job title as commit message (#32748)
resolves #32724 --------- Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
This commit is contained in:
		| @@ -51,6 +51,7 @@ const sfc = { | ||||
|       run: { | ||||
|         link: '', | ||||
|         title: '', | ||||
|         titleHTML: '', | ||||
|         status: '', | ||||
|         canCancel: false, | ||||
|         canApprove: false, | ||||
| @@ -383,9 +384,8 @@ export function initRepositoryActionView() { | ||||
|       <div class="action-info-summary"> | ||||
|         <div class="action-info-summary-title"> | ||||
|           <ActionRunStatus :locale-status="locale.status[run.status]" :status="run.status" :size="20"/> | ||||
|           <h2 class="action-info-summary-title-text"> | ||||
|             {{ run.title }} | ||||
|           </h2> | ||||
|           <!-- eslint-disable-next-line vue/no-v-html --> | ||||
|           <h2 class="action-info-summary-title-text" v-html="run.titleHTML"/> | ||||
|         </div> | ||||
|         <button class="ui basic small compact button primary" @click="approveRun()" v-if="run.canApprove"> | ||||
|           {{ locale.approve }} | ||||
|   | ||||
		Reference in New Issue
	
	Block a user