rundetail: make cursor pointer in dropdown entries

since the anchor doesn't have an href it won't show as a pointer
This commit is contained in:
Simone Gotti 2019-07-13 00:41:02 +02:00
parent eb2453d46f
commit f244ce02c8
1 changed files with 2 additions and 2 deletions

View File

@ -105,14 +105,14 @@
<li>
<a
v-if="run.can_restart_from_scratch"
class="block px-4 py-2 hover:bg-blue-500 hover:text-white"
class="block px-4 py-2 hover:bg-blue-500 hover:text-white cursor-pointer"
@click="restartRun(run.id, true)"
>From start</a>
</li>
<li>
<a
v-if="run.can_restart_from_failed_tasks"
class="block px-4 py-2 hover:bg-blue-500 hover:text-white"
class="block px-4 py-2 hover:bg-blue-500 hover:text-white cursor-pointer"
@click="restartRun(run.id)"
>From failed tasks</a>
</li>