Skip to content

Commit 7f05825

Browse files
committed
chore: wip
1 parent d4b27fa commit 7f05825

File tree

5 files changed

+12
-40
lines changed

5 files changed

+12
-40
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ const handleRetry = async (jobId: string) => {
165165
<th scope="col" class="px-3 py-3.5 text-left text-sm font-semibold text-gray-900 dark:text-gray-100">Status</th>
166166
<th scope="col" class="px-3 py-3.5 text-left text-sm font-semibold text-gray-900 dark:text-gray-100">Attempts</th>
167167
<th scope="col" class="px-3 py-3.5 text-left text-sm font-semibold text-gray-900 dark:text-gray-100">Runtime</th>
168-
<th scope="col" class="px-3 py-3.5 text-left text-sm font-semibold text-gray-900 dark:text-gray-100">Started</th>
168+
<th scope="col" class="px-3 py-3.5 text-left text-sm font-semibold text-gray-900 dark:text-gray-100 text-right">Started</th>
169169
<th scope="col" class="relative py-3.5 pl-3 pr-4 sm:pr-6">
170170
<span class="sr-only">Actions</span>
171171
</th>
@@ -198,7 +198,7 @@ const handleRetry = async (jobId: string) => {
198198
<td class="whitespace-nowrap px-3 py-4 text-sm text-gray-500 dark:text-gray-400 font-mono">
199199
{{ job.runtime ? `${job.runtime.toFixed(1)}s` : '-' }}
200200
</td>
201-
<td class="whitespace-nowrap px-3 py-4 text-sm text-gray-500 dark:text-gray-400">{{ job.started_at }}</td>
201+
<td class="whitespace-nowrap px-3 py-4 text-sm text-gray-500 dark:text-gray-400 text-right">{{ job.started_at }}</td>
202202
<td class="relative whitespace-nowrap py-4 pl-3 pr-4 text-right text-sm font-medium sm:pr-6">
203203
<button
204204
v-if="job.status === 'failed'"

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ const handleRetry = async (job: Job) => {
345345

346346
<div class="relative overflow-hidden rounded-lg bg-white dark:bg-blue-gray-700 px-4 pt-5 shadow sm:px-6 sm:pt-6">
347347
<dt>
348-
<div class="absolute rounded-md bg-green-500 p-3">
348+
<div class="absolute rounded-md bg-blue-500 p-3">
349349
<div class="i-heroicons-clock h-6 w-6 text-white" />
350350
</div>
351351
<p class="ml-16 truncate text-sm text-gray-500 dark:text-gray-300 font-medium">
@@ -366,7 +366,7 @@ const handleRetry = async (job: Job) => {
366366

367367
<div class="relative overflow-hidden rounded-lg bg-white dark:bg-blue-gray-700 px-4 pt-5 shadow sm:px-6 sm:pt-6">
368368
<dt>
369-
<div class="absolute rounded-md bg-yellow-500 p-3">
369+
<div class="absolute rounded-md bg-blue-500 p-3">
370370
<div class="i-heroicons-bolt h-6 w-6 text-white" />
371371
</div>
372372
<p class="ml-16 truncate text-sm text-gray-500 dark:text-gray-300 font-medium">

storage/framework/defaults/views/dashboard/notifications/history.vue

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -295,6 +295,9 @@ onMounted(async () => {
295295
<div v-if="sortDirection === 'desc'" class="i-heroicons-chevron-down h-4 w-4" />
296296
<div v-else class="i-heroicons-chevron-up h-4 w-4" />
297297
</div>
298+
<div v-else class="ml-2">
299+
<div class="i-heroicons-arrows-up-down h-4 w-4 text-gray-400" />
300+
</div>
298301
</div>
299302
</th>
300303
<th scope="col" class="px-3 py-3.5 text-right text-sm font-semibold text-gray-900 dark:text-gray-100 cursor-pointer" @click="toggleSort('delivered_at')">
@@ -304,6 +307,9 @@ onMounted(async () => {
304307
<div v-if="sortDirection === 'desc'" class="i-heroicons-chevron-down h-4 w-4" />
305308
<div v-else class="i-heroicons-chevron-up h-4 w-4" />
306309
</div>
310+
<div v-else class="ml-2">
311+
<div class="i-heroicons-arrows-up-down h-4 w-4 text-gray-400" />
312+
</div>
307313
</div>
308314
</th>
309315
<th scope="col" class="relative py-3.5 pl-3 pr-4 sm:pr-6">

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ onMounted(async () => {
326326

327327
<div class="relative overflow-hidden rounded-lg bg-white dark:bg-blue-gray-700 px-4 pt-5 shadow sm:px-6 sm:pt-6">
328328
<dt>
329-
<div class="absolute rounded-md bg-green-500 p-3">
329+
<div class="absolute rounded-md bg-blue-500 p-3">
330330
<div class="i-heroicons-check-circle h-6 w-6 text-white" />
331331
</div>
332332
<p class="ml-16 truncate text-sm text-gray-500 dark:text-gray-300 font-medium">
@@ -347,7 +347,7 @@ onMounted(async () => {
347347

348348
<div class="relative overflow-hidden rounded-lg bg-white dark:bg-blue-gray-700 px-4 pt-5 shadow sm:px-6 sm:pt-6">
349349
<dt>
350-
<div class="absolute rounded-md bg-yellow-500 p-3">
350+
<div class="absolute rounded-md bg-blue-500 p-3">
351351
<div class="i-heroicons-clock h-6 w-6 text-white" />
352352
</div>
353353
<p class="ml-16 truncate text-sm text-gray-500 dark:text-gray-300 font-medium">

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

Lines changed: 0 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -288,16 +288,6 @@ const barChartOptions = {
288288
<div class="bg-white rounded-lg shadow p-6">
289289
<div class="flex items-center justify-between mb-4">
290290
<h3 class="text-base font-medium text-gray-900">Response Time</h3>
291-
<div class="flex items-center space-x-4">
292-
<div class="flex items-center space-x-2">
293-
<div class="h-3 w-3 rounded-full bg-blue-400"></div>
294-
<span class="text-sm text-gray-600">Average</span>
295-
</div>
296-
<div class="flex items-center space-x-2">
297-
<div class="h-3 w-3 rounded-full bg-blue-200"></div>
298-
<span class="text-sm text-gray-600">p95</span>
299-
</div>
300-
</div>
301291
</div>
302292
<div class="relative h-[300px]">
303293
<Line :data="responseTimeData" :options="chartOptions" />
@@ -308,16 +298,6 @@ const barChartOptions = {
308298
<div class="bg-white rounded-lg shadow p-6">
309299
<div class="flex items-center justify-between mb-4">
310300
<h3 class="text-base font-medium text-gray-900">Success Rate</h3>
311-
<div class="flex items-center space-x-4">
312-
<div class="flex items-center space-x-2">
313-
<div class="h-3 w-3 rounded-full bg-green-400"></div>
314-
<span class="text-sm text-gray-600">Success</span>
315-
</div>
316-
<div class="flex items-center space-x-2">
317-
<div class="h-3 w-3 rounded-full bg-red-400"></div>
318-
<span class="text-sm text-gray-600">Error</span>
319-
</div>
320-
</div>
321301
</div>
322302
<div class="relative h-[300px]">
323303
<Line :data="successRateData" :options="chartOptions" />
@@ -328,20 +308,6 @@ const barChartOptions = {
328308
<div class="bg-white rounded-lg shadow p-6">
329309
<div class="flex items-center justify-between mb-4">
330310
<h3 class="text-base font-medium text-gray-900">Status Codes</h3>
331-
<div class="flex items-center space-x-4">
332-
<div class="flex items-center space-x-2">
333-
<div class="h-3 w-3 rounded-full bg-green-400"></div>
334-
<span class="text-sm text-gray-600">2xx</span>
335-
</div>
336-
<div class="flex items-center space-x-2">
337-
<div class="h-3 w-3 rounded-full bg-yellow-400"></div>
338-
<span class="text-sm text-gray-600">3xx</span>
339-
</div>
340-
<div class="flex items-center space-x-2">
341-
<div class="h-3 w-3 rounded-full bg-red-400"></div>
342-
<span class="text-sm text-gray-600">4xx/5xx</span>
343-
</div>
344-
</div>
345311
</div>
346312
<div class="relative h-[300px]">
347313
<Bar :data="statusCodesData" :options="barChartOptions" />

0 commit comments

Comments
 (0)