From 9cbc19689ce3c899fec7dd09afc934a13421cee6 Mon Sep 17 00:00:00 2001 From: yoge Date: Fri, 26 Dec 2025 18:25:15 +0800 Subject: [PATCH] feat: add export func --- src/components/ExportSidebar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ExportSidebar.tsx b/src/components/ExportSidebar.tsx index 50c5aa2..66eea83 100644 --- a/src/components/ExportSidebar.tsx +++ b/src/components/ExportSidebar.tsx @@ -101,7 +101,7 @@ export default function ExportSidebar({ isOpen, onClose, result }: ExportSidebar ...(token ? { 'Authorization': token } : {}), }, body: JSON.stringify({ - task_id: parseInt(result.id, 10), + task_no: result.id, type: type, }), });