feat: robot id

This commit is contained in:
karishmas6
2024-10-24 03:40:38 +05:30
parent d6e3d26fe3
commit 92d7a16b34

View File

@@ -34,7 +34,7 @@ interface ScheduleConfig {
cronExpression?: string;
}
interface RobotSettings {
export interface RobotSettings {
id: string;
userId?: number;
recording_meta: RobotMeta;
@@ -92,6 +92,12 @@ export const RobotSettingsModal = ({ isOpen, handleStart, handleClose, initialSe
disabled
style={{ marginBottom: '20px' }}
/>
<TextField
label="Robot ID"
value={robot.recording_meta.id}
disabled
style={{ marginBottom: '20px' }}
/>
</>
)
}