From 22a411fed9800b4408832a1ac2de978147861019 Mon Sep 17 00:00:00 2001 From: allanice001 Date: Mon, 17 Nov 2025 19:56:41 +0000 Subject: [PATCH] chore: updates in UI due to migration to OAS3.1 Signed-off-by: allanice001 --- internal/web/dist/index.html | 6 +++--- internal/web/dist/index.html.br | Bin 203 -> 203 bytes internal/web/dist/index.html.gz | Bin 332 -> 334 bytes ui/src/pages/jobs-page.tsx | 28 +++++++++------------------- 4 files changed, 12 insertions(+), 22 deletions(-) diff --git a/internal/web/dist/index.html b/internal/web/dist/index.html index ac4efec..e16121e 100644 --- a/internal/web/dist/index.html +++ b/internal/web/dist/index.html @@ -5,9 +5,9 @@ AutoGlue - - - + + +
diff --git a/internal/web/dist/index.html.br b/internal/web/dist/index.html.br index ed4fa407c4077c7e4119e47a1385344ed393f7d9..da54db07a78193fef287c1fa0e736c2e8cfd0666 100644 GIT binary patch delta 191 zcmV;w06_oC0m}i96n}zTsb_$M0{mCELp}h!dAon+u1Nz9qBraq!9+z&adwX{r64h{X4&V^nefoSMIk97!h_2*^9;* z9_hSH0)&G0Y1Y%+KK%o@H48?WIs%@5TI2u# delta 191 zcmV;w06_oC0m}i96n~N{sAqtL0{rK;+Ub$KyT1XW8nU5iz8gVHGgy*YZEN65@F~SO zx0#h)S?7j!><=I$hP-%ekoKIAMi^K-zrG{%-#4B2@BHr3140N~x!*2eMA$WCFB)ff zr13Hd5DMz2SxgCcw+gI~-&fWuW`-F8K=>8?WIs*I6Vdek; diff --git a/internal/web/dist/index.html.gz b/internal/web/dist/index.html.gz index d4ae01bc5994d3e9dc858ca96b4650695ef07ffd..55000c9367dae2753dd827af92b004d2121e46d0 100644 GIT binary patch literal 334 zcmV-U0kQrciwFq3eH&>218Ht#Wq2-VbZu+^eUiaW!!Qhn?|X`nE3_R41c#;)6Jl`S zu)#R&7827M(xghfZhL#urf32rPWc_%pZzN-&$Lr??0_}Ynrc=K2Q$*vf`jGNjIpu- zsRt2d3nZCpqz^!XZ(i=R8_tR;Y0!Q$4@PiQ&T=+jqi$slMd<7ELu)u|JiH5D^hl7$ z%TxD=wz7>aJ;J_oo;Zsf0vku|QBxx{^r#>kgA0Zh38l$`k_Nf6nzn15-WiC4ybHm3tkJUIRoqa9=rI&%H5{_Vdi}HoSmhsqS7nh9e{3gM z7qyf6Cv&nrK|M%C+2Z>7YIW!P5&D}I=x87`0Q4UyZTI@HUC#C6CRZVm%HsRY$~UKv g6I^4@Pz&yzqrpXtQ*o+^P2(5%0wCGT783#h0P3fhwEzGB literal 332 zcmV-S0ki%eiwFqUB@t-=18Ht#Wq2-VbZu+^eUiaW!!Qhn?|X`nE3{#V0f)5G5CVxS zAR#U&B&Ic_NtJlr_V%Pr(F91G@;kOa`&S~5jMud9fwk1xdLhSyS>>9FgX8srG1-DL zqe!v?QcSlhM4*a4J>C{qoQXMU(S5Q2w&JM0<7~tx-Khpd9Gc@@XE|#FyjNTdNKmHB zL-&Mss!J^c!nXH;I7=J?mqu;TP+J)oP(v{VCk!1DDqBRYEL6+#^Z+9y3-x+K{?2Yd ziX7)$)B$^%x9hywSV)6{kI@Hg(6JbF+EB&hF$#1BcE#$f_s#O=rTmDzmLenm*v_y% zX|K#r=4^Y022h%c>&q2fJYX?Ff3qU(EyNap{sZOh==nUt`t`olF_WbDelz*z&3=X( e92lC42k&Wgk>XsOYf{tn1-<}2NVc650ssIx{hn+9 diff --git a/ui/src/pages/jobs-page.tsx b/ui/src/pages/jobs-page.tsx index c40ebe8..50dc078 100644 --- a/ui/src/pages/jobs-page.tsx +++ b/ui/src/pages/jobs-page.tsx @@ -1,7 +1,5 @@ import { type FC, useEffect, useState } from "react" import { archerAdminApi } from "@/api/archer_admin" -import { useMutation, useQuery, useQueryClient } from "@tanstack/react-query" -import { Loader2, Plus, RefreshCw, Search, X } from "lucide-react" import { type AdminListArcherJobsRequest, AdminListArcherJobsStatusEnum, @@ -9,6 +7,8 @@ import { type DtoPageJob, type DtoQueueInfo, } from "@/sdk" +import { useMutation, useQuery, useQueryClient } from "@tanstack/react-query" +import { Loader2, Plus, RefreshCw, Search, X } from "lucide-react" import { cn } from "@/lib/utils" import { Badge } from "@/components/ui/badge" @@ -296,8 +296,7 @@ export const JobsPage: FC = () => { )} {items.map((j) => { const jobStatus: JobStatus = - (j.status as JobStatus | undefined) ?? - AdminListArcherJobsStatusEnum.queued + (j.status as JobStatus | undefined) ?? AdminListArcherJobsStatusEnum.queued return ( @@ -309,10 +308,7 @@ export const JobsPage: FC = () => { {jobStatus} @@ -418,9 +414,7 @@ function DetailsButton({ job }: { job: DtoJob }) { Last error -
-                  {job.last_error}
-                
+
{job.last_error}
)} @@ -446,9 +440,9 @@ function DetailsButton({ job }: { job: DtoJob }) { } function EnqueueDialog({ - onSubmit, - submitting, - }: { + onSubmit, + submitting, +}: { onSubmit: (body: { queue: string type: string @@ -513,11 +507,7 @@ function EnqueueDialog({
- setRunAt(e.target.value)} - /> + setRunAt(e.target.value)} />