Skip to content

Commit

Permalink
Merge pull request #384 from openaddresses/use-pointer
Browse files Browse the repository at this point in the history
Show pointer cursor to indicate you can click on this span
  • Loading branch information
ingalls authored Apr 17, 2024
2 parents a717702 + 40dc717 commit a9cfa38
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion api/web/src/components/Run.vue
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

<div class='ms-auto btn-list'>
<span v-if='run.live' class="badge bg-green text-white" style='height: 20px;'>Live</span>
<span v-if='run.github.sha' v-on:click.stop.prevent='github(run)' style='height: 20px;' class="badge bg-blue text-white">Github</span>
<span v-if='run.github.sha' v-on:click.stop.prevent='github(run)' style='height: 20px;' class="badge bg-blue text-white cursor-pointer">Github</span>
<IconRefresh @click='fetchRun' class='cursor-pointer' size='32'/>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion api/web/src/components/Runs.vue
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
<div class='d-flex'>
<div class='ms-auto btn-list'>
<span v-if='run.live' class="badge bg-green text-white">Live</span>
<span v-if='run.github.sha' v-on:click.stop.prevent='github(run)' class="badge bg-blue text-white">Github</span>
<span v-if='run.github.sha' v-on:click.stop.prevent='github(run)' class="badge bg-blue text-white cursor-pointer">Github</span>
</div>
</div>
</td>
Expand Down

0 comments on commit a9cfa38

Please sign in to comment.