feat: set login status during robot creation
This commit is contained in:
@@ -124,6 +124,8 @@ export const RecordingsTable = ({
|
||||
setInitialUrl,
|
||||
recordingUrl,
|
||||
setRecordingUrl,
|
||||
isLogin,
|
||||
setIsLogin,
|
||||
recordingName,
|
||||
setRecordingName,
|
||||
recordingId,
|
||||
@@ -364,6 +366,18 @@ export const RecordingsTable = ({
|
||||
style={{ marginBottom: '10px', marginTop: '20px' }}
|
||||
/>
|
||||
|
||||
<FormControlLabel
|
||||
control={
|
||||
<Checkbox
|
||||
checked={isLogin}
|
||||
onChange={(e) => setIsLogin(e.target.checked)}
|
||||
color="primary"
|
||||
/>
|
||||
}
|
||||
label={t('recordingtable.modal.login_title')}
|
||||
style={{ marginBottom: '10px' }}
|
||||
/>
|
||||
|
||||
<br />
|
||||
<Button
|
||||
variant="contained"
|
||||
|
||||
Reference in New Issue
Block a user