chore: format
This commit is contained in:
parent
2a3b08487e
commit
7f86c352e3
1 changed files with 3 additions and 4 deletions
|
|
@ -1218,7 +1218,7 @@ const app = new Elysia({
|
||||||
<tbody>
|
<tbody>
|
||||||
{userJobs.map((job) => (
|
{userJobs.map((job) => (
|
||||||
<>
|
<>
|
||||||
<tr key={`job-${job.id}` as any} id={`job-row-${job.id}`}>
|
<tr id={`job-row-${job.id}`}>
|
||||||
<td
|
<td
|
||||||
class="job-details-toggle cursor-pointer"
|
class="job-details-toggle cursor-pointer"
|
||||||
data-job-id={job.id}
|
data-job-id={job.id}
|
||||||
|
|
@ -1264,9 +1264,8 @@ const app = new Elysia({
|
||||||
Detailed File Information:
|
Detailed File Information:
|
||||||
</div>
|
</div>
|
||||||
{job.files_detailed.map(
|
{job.files_detailed.map(
|
||||||
(file: Filename, index: number) => (
|
(file: Filename) => (
|
||||||
<div
|
<div
|
||||||
key={String(file.id) as any}
|
|
||||||
class="flex items-center"
|
class="flex items-center"
|
||||||
>
|
>
|
||||||
<span
|
<span
|
||||||
|
|
@ -1280,7 +1279,7 @@ const app = new Elysia({
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
viewBox="0 0 20 20"
|
viewBox="0 0 20 20"
|
||||||
fill="currentColor"
|
fill="currentColor"
|
||||||
class="w-4 h-4 inline-block mx-2 text-neutral-500"
|
class="mx-2 inline-block h-4 w-4 text-neutral-500"
|
||||||
>
|
>
|
||||||
<path
|
<path
|
||||||
fill-rule="evenodd"
|
fill-rule="evenodd"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue