mirror of
				https://github.com/go-gitea/gitea
				synced 2025-10-31 11:28:24 +00:00 
			
		
		
		
	Attach a tooltip to the action control button (#24595)
The first time I saw the big red X button I thought something failed but apparently, it was just a "Cancel" button # Before    # After    --------- Signed-off-by: Yarden Shoham <git@yardenshoham.com> Co-authored-by: Giteabot <teabot@gitea.io> Co-authored-by: silverwind <me@silverwind.io>
This commit is contained in:
		| @@ -6,13 +6,13 @@ | ||||
|         <div class="action-title"> | ||||
|           {{ run.title }} | ||||
|         </div> | ||||
|         <button class="action-control-button text green" @click="approveRun()" v-if="run.canApprove"> | ||||
|         <button :data-tooltip-content="locale.approve" class="action-control-button text green" @click="approveRun()" v-if="run.canApprove"> | ||||
|           <SvgIcon name="octicon-play" :size="20"/> | ||||
|         </button> | ||||
|         <button class="action-control-button text red" @click="cancelRun()" v-else-if="run.canCancel"> | ||||
|         <button :data-tooltip-content="locale.cancel" class="action-control-button text red" @click="cancelRun()" v-else-if="run.canCancel"> | ||||
|           <SvgIcon name="octicon-x-circle-fill" :size="20"/> | ||||
|         </button> | ||||
|         <button class="action-control-button text green" @click="rerun()" v-else-if="run.canRerun"> | ||||
|         <button :data-tooltip-content="locale.rerun" class="action-control-button text green" @click="rerun()" v-else-if="run.canRerun"> | ||||
|           <SvgIcon name="octicon-sync" :size="20"/> | ||||
|         </button> | ||||
|       </div> | ||||
| @@ -93,6 +93,7 @@ const sfc = { | ||||
|     runIndex: String, | ||||
|     jobIndex: String, | ||||
|     actionsURL: String, | ||||
|     locale: Object, | ||||
|   }, | ||||
|  | ||||
|   data() { | ||||
| @@ -314,6 +315,11 @@ export function initRepositoryActionView() { | ||||
|     runIndex: el.getAttribute('data-run-index'), | ||||
|     jobIndex: el.getAttribute('data-job-index'), | ||||
|     actionsURL: el.getAttribute('data-actions-url'), | ||||
|     locale: { | ||||
|       approve: el.getAttribute('data-locale-approve'), | ||||
|       cancel: el.getAttribute('data-locale-cancel'), | ||||
|       rerun: el.getAttribute('data-locale-rerun'), | ||||
|     } | ||||
|   }); | ||||
|   view.mount(el); | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user