#
luxiaotao1123
2024-11-04 7f70cb15d035f0c233b9e62b9e43aa985317c908
zy-acs-flow/src/page/mission/MissionColumn.jsx
@@ -2,10 +2,12 @@
import { Box, Stack, Typography } from '@mui/material';
import {
    useTranslate,
    useTheme,
} from 'react-admin';
import { MissionCard } from './MissionCard';
export const MissionColumn = ({ stage, missions, }) => {
    const theme = useTheme();
    const translate = useTranslate();
    return (
@@ -14,7 +16,7 @@
                flex: 1,
                paddingTop: '8px',
                paddingBottom: '16px',
                bgcolor: '#eaeaee',
                bgcolor: theme[0] === 'dark' ? '#303030' : '#eaeaee',
                '&:first-of-type': {
                    paddingLeft: '5px',
                    borderTopLeftRadius: 5,