From 5862c1226940189eca2ba46224d28092201f1249 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Mon, 28 Oct 2024 20:46:37 +0530 Subject: [PATCH] feat: remove user id and scheduled id from run label --- src/components/molecules/ColapsibleRow.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/molecules/ColapsibleRow.tsx b/src/components/molecules/ColapsibleRow.tsx index 83076fac..47d8ba72 100644 --- a/src/components/molecules/ColapsibleRow.tsx +++ b/src/components/molecules/ColapsibleRow.tsx @@ -35,9 +35,9 @@ export const CollapsibleRow = ({ row, handleDelete, isOpen, currentLog, abortRun const [open, setOpen] = useState(isOpen); const [openSettingsModal, setOpenSettingsModal] = useState(false); const runByLabel = row.runByUserId - ? `User ID: ${row.runByUserId}` + ? `${row.runByUserId}` : row.runByScheduleId - ? `Schedule ID: ${row.runByScheduleId}` + ? `${row.runByScheduleId}` : row.runByAPI ? 'API' : 'Unknown';