chore: lint
This commit is contained in:
@@ -259,26 +259,26 @@ export const RecordingsTable = ({ handleEditRecording, handleRunRecording, handl
|
|||||||
onRowsPerPageChange={handleChangeRowsPerPage}
|
onRowsPerPageChange={handleChangeRowsPerPage}
|
||||||
/>
|
/>
|
||||||
<GenericModal isOpen={isModalOpen} onClose={() => setModalOpen(false)}>
|
<GenericModal isOpen={isModalOpen} onClose={() => setModalOpen(false)}>
|
||||||
<div style={{ padding: '20px' }}>
|
<div style={{ padding: '20px' }}>
|
||||||
<Typography variant="h6" gutterBottom>Enter URL To Extract Data</Typography>
|
<Typography variant="h6" gutterBottom>Enter URL To Extract Data</Typography>
|
||||||
<TextField
|
<TextField
|
||||||
label="URL"
|
label="URL"
|
||||||
variant="outlined"
|
variant="outlined"
|
||||||
fullWidth
|
fullWidth
|
||||||
value={recordingUrl}
|
value={recordingUrl}
|
||||||
onChange={(e: any) => setRecordingUrl(e.target.value)}
|
onChange={(e: any) => setRecordingUrl(e.target.value)}
|
||||||
style={{ marginBottom: '20px', marginTop: '20px' }}
|
style={{ marginBottom: '20px', marginTop: '20px' }}
|
||||||
/>
|
/>
|
||||||
<Button
|
<Button
|
||||||
variant="contained"
|
variant="contained"
|
||||||
color="primary"
|
color="primary"
|
||||||
onClick={startRecording}
|
onClick={startRecording}
|
||||||
disabled={!recordingUrl}
|
disabled={!recordingUrl}
|
||||||
>
|
>
|
||||||
Start Training Robot
|
Start Training Robot
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
</GenericModal>
|
</GenericModal>
|
||||||
</React.Fragment>
|
</React.Fragment>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user