chore: lint
This commit is contained in:
@@ -77,50 +77,50 @@ export const RunContent = ({ row, currentLog, interpretationInProgress, logEndRe
|
|||||||
<Box sx={{ width: '100%' }}>
|
<Box sx={{ width: '100%' }}>
|
||||||
<TabContext value={tab}>
|
<TabContext value={tab}>
|
||||||
<Box sx={{ borderBottom: 1, borderColor: 'divider' }}>
|
<Box sx={{ borderBottom: 1, borderColor: 'divider' }}>
|
||||||
<Tabs
|
<Tabs
|
||||||
value={tab}
|
value={tab}
|
||||||
onChange={(e, newTab) => setTab(newTab)}
|
onChange={(e, newTab) => setTab(newTab)}
|
||||||
aria-label="run-content-tabs"
|
aria-label="run-content-tabs"
|
||||||
sx={{
|
|
||||||
// Remove the default blue indicator
|
|
||||||
'& .MuiTabs-indicator': {
|
|
||||||
backgroundColor: '#FF00C3', // Change to pink
|
|
||||||
},
|
|
||||||
// Remove default transition effects
|
|
||||||
'& .MuiTab-root': {
|
|
||||||
'&.Mui-selected': {
|
|
||||||
color: '#FF00C3',
|
|
||||||
},
|
|
||||||
}
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<Tab
|
|
||||||
label={t('run_content.tabs.output_data')}
|
|
||||||
value='output'
|
|
||||||
sx={{
|
sx={{
|
||||||
color: (theme) => theme.palette.mode === 'dark' ? '#fff' : '#000',
|
// Remove the default blue indicator
|
||||||
'&:hover': {
|
'& .MuiTabs-indicator': {
|
||||||
color: '#FF00C3'
|
backgroundColor: '#FF00C3', // Change to pink
|
||||||
},
|
},
|
||||||
'&.Mui-selected': {
|
// Remove default transition effects
|
||||||
color: '#FF00C3',
|
'& .MuiTab-root': {
|
||||||
|
'&.Mui-selected': {
|
||||||
|
color: '#FF00C3',
|
||||||
|
},
|
||||||
}
|
}
|
||||||
}}
|
}}
|
||||||
/>
|
>
|
||||||
<Tab
|
<Tab
|
||||||
label={t('run_content.tabs.log')}
|
label={t('run_content.tabs.output_data')}
|
||||||
value='log'
|
value='output'
|
||||||
sx={{
|
sx={{
|
||||||
color: (theme) => theme.palette.mode === 'dark' ? '#fff' : '#000',
|
color: (theme) => theme.palette.mode === 'dark' ? '#fff' : '#000',
|
||||||
'&:hover': {
|
'&:hover': {
|
||||||
color: '#FF00C3'
|
color: '#FF00C3'
|
||||||
},
|
},
|
||||||
'&.Mui-selected': {
|
'&.Mui-selected': {
|
||||||
color: '#FF00C3',
|
color: '#FF00C3',
|
||||||
}
|
}
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</Tabs>
|
<Tab
|
||||||
|
label={t('run_content.tabs.log')}
|
||||||
|
value='log'
|
||||||
|
sx={{
|
||||||
|
color: (theme) => theme.palette.mode === 'dark' ? '#fff' : '#000',
|
||||||
|
'&:hover': {
|
||||||
|
color: '#FF00C3'
|
||||||
|
},
|
||||||
|
'&.Mui-selected': {
|
||||||
|
color: '#FF00C3',
|
||||||
|
}
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
</Tabs>
|
||||||
</Box>
|
</Box>
|
||||||
<TabPanel value='log'>
|
<TabPanel value='log'>
|
||||||
<Box sx={{
|
<Box sx={{
|
||||||
|
|||||||
Reference in New Issue
Block a user