Skip to content

Commit ad24f8c

Browse files
committed
chore: wip
1 parent 70b22e3 commit ad24f8c

File tree

1 file changed

+10
-10
lines changed
  • storage/framework/defaults/views/dashboard/jobs

1 file changed

+10
-10
lines changed

storage/framework/defaults/views/dashboard/jobs/index.vue

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,16 @@ const handleRetry = async (job: Job) => {
392392
<div class="my-8 px-4 lg:px-8 sm:px-6">
393393
<div class="bg-white dark:bg-blue-gray-700 rounded-lg shadow">
394394
<div class="px-4 py-5 sm:p-6">
395-
<h3 class="text-base font-semibold leading-6 text-gray-900 dark:text-gray-100">Recent Jobs</h3>
395+
<div class="flex items-center justify-between">
396+
<h3 class="text-base font-semibold leading-6 text-gray-900 dark:text-gray-100">Recent Jobs</h3>
397+
<router-link
398+
to="/jobs/history"
399+
class="inline-flex items-center space-x-1 text-sm text-blue-600 hover:text-blue-500 dark:text-blue-400 dark:hover:text-blue-300"
400+
>
401+
<span>View Full History</span>
402+
<div class="i-heroicons-arrow-right h-4 w-4" />
403+
</router-link>
404+
</div>
396405
<div class="mt-4 flow-root">
397406
<div class="-mx-4 -my-2 overflow-x-auto sm:-mx-6 lg:-mx-8">
398407
<div class="inline-block min-w-full py-2 align-middle sm:px-6 lg:px-8">
@@ -509,15 +518,6 @@ const handleRetry = async (job: Job) => {
509518
<h3 class="text-base font-medium text-gray-900 dark:text-gray-100">Queue Statistics</h3>
510519
<p class="mt-1 text-sm text-gray-500 dark:text-gray-400">Detailed breakdown of jobs by queue and status</p>
511520
</div>
512-
<div class="mt-4 sm:ml-16 sm:mt-0 sm:flex-none">
513-
<router-link
514-
to="/jobs/history"
515-
class="inline-flex items-center space-x-1 text-sm text-blue-600 hover:text-blue-500 dark:text-blue-400 dark:hover:text-blue-300"
516-
>
517-
<span>View Full History</span>
518-
<div class="i-heroicons-arrow-right h-4 w-4" />
519-
</router-link>
520-
</div>
521521
</div>
522522

523523
<div class="mt-6 grid grid-cols-1 gap-6 lg:grid-cols-3 sm:grid-cols-2">

0 commit comments

Comments
 (0)