feat: remove user id and scheduled id from run label
This commit is contained in:
@@ -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';
|
||||
|
||||
Reference in New Issue
Block a user