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 [open, setOpen] = useState(isOpen);
|
||||||
const [openSettingsModal, setOpenSettingsModal] = useState(false);
|
const [openSettingsModal, setOpenSettingsModal] = useState(false);
|
||||||
const runByLabel = row.runByUserId
|
const runByLabel = row.runByUserId
|
||||||
? `User ID: ${row.runByUserId}`
|
? `${row.runByUserId}`
|
||||||
: row.runByScheduleId
|
: row.runByScheduleId
|
||||||
? `Schedule ID: ${row.runByScheduleId}`
|
? `${row.runByScheduleId}`
|
||||||
: row.runByAPI
|
: row.runByAPI
|
||||||
? 'API'
|
? 'API'
|
||||||
: 'Unknown';
|
: 'Unknown';
|
||||||
|
|||||||
Reference in New Issue
Block a user