fix: show run id

This commit is contained in:
karishmas6
2024-10-28 20:44:16 +05:30
parent 1d3c91d90e
commit 6dd6d96976

View File

@@ -121,6 +121,11 @@ export const CollapsibleRow = ({ row, handleDelete, isOpen, currentLog, abortRun
<>
<Typography variant="h5" style={{ marginBottom: '20px' }}>Run Settings</Typography>
<Box style={{ display: 'flex', flexDirection: 'column', gap: '20px' }}>
<TextField
label="Run ID"
value={row.runId}
InputProps={{ readOnly: true }}
/>
<TextField
label={row.runByUserId ? "Run by User" : row.runByScheduleId ? "Run by Schedule ID" : "Run by API"}
value={runByLabel}