Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Web: Refine panel feature set #2798

Merged
merged 12 commits into from
Apr 17, 2024
Prev Previous commit
Next Next commit
Fixing icon.
  • Loading branch information
phix committed Apr 17, 2024
commit d24d7603496a4077492dcfb27094a6fefd2a6b6c
4 changes: 2 additions & 2 deletions web/src/components/jobs/JobDetailPage.tsx
Original file line number Diff line number Diff line change
@@ -7,10 +7,10 @@ import '../../i18n/config'
import * as Redux from 'redux'
import { Box, Button, CircularProgress, Divider, Grid, Tab, Tabs } from '@mui/material'
import { CalendarIcon } from '@mui/x-date-pickers'
import { DirectionsRun, Pause, Start } from '@mui/icons-material'
import { IState } from '../../store/reducers'
import { LineageJob } from '../lineage/types'
import { MqInfo } from '../core/info/MqInfo'
import { Pause, Start } from '@mui/icons-material'
import { Run } from '../../types/api'
import { alpha, createTheme } from '@mui/material/styles'
import { bindActionCreators } from 'redux'
@@ -162,7 +162,7 @@ const JobDetailPage: FunctionComponent<IProps> = (props) => {
</Grid>
<Grid item xs={4}>
<MqInfo
icon={<Pause color={'disabled'} />}
icon={<DirectionsRun color={'disabled'} />}
label={'State'}
value={<MqStatus label={job.latestRun?.state} color={jobRunsStatus(runs)} />}
/>