Skip to content

Commit 8661b3c

Browse files
committed
fix: adjust layout for job information display in JobInfoPopup
1 parent 059e5cf commit 8661b3c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

custom/JobInfoPopup.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<template>
22
<div class="flex flex-col w-full min-w-96">
33
<div class="flex items-center mb-1">
4-
<div class="flex flex-col items-start">
4+
<div class="flex flex-col items-start justify-end h-12">
55
<h2 class="text-lg font-semibold dark:text-white">{{ job.name }}</h2>
66
<Tooltip>
77
<p class="text-xs text-gray-600 dark:text-gray-200 h-full">{{ t('Created:') }} {{ getTimeAgoString(new Date(job.createdAt)) }}</p>
@@ -10,7 +10,7 @@
1010
</template>
1111
</Tooltip>
1212
</div>
13-
<div class="ml-auto flex flex-col items-start">
13+
<div class="ml-auto flex flex-col items-start justify-end h-12">
1414
<div class="flex items-center">
1515
<p class=" text-gray-800 dark:text-white h-full"> {{ t('Progress:') }} <span class="font-semibold" >{{ job.progress }}%</span></p>
1616
<StateToIcon :job="job" />

0 commit comments

Comments
 (0)