diff --git a/src/common/beam/gather/BeamGatherPane.tsx b/src/common/beam/gather/BeamGatherPane.tsx index 43106d920..60bee165f 100644 --- a/src/common/beam/gather/BeamGatherPane.tsx +++ b/src/common/beam/gather/BeamGatherPane.tsx @@ -4,6 +4,7 @@ import { useShallow } from 'zustand/react/shallow'; import type { ColorPaletteProp, SxProps } from '@mui/joy/styles/types'; import { Box, Button, ButtonGroup, CircularProgress, FormControl, SvgIconProps, Typography } from '@mui/joy'; import AutoAwesomeIcon from '@mui/icons-material/AutoAwesome'; +import AutoAwesomeMotionTwoToneIcon from '@mui/icons-material/AutoAwesomeMotionTwoTone'; import AutoAwesomeOutlinedIcon from '@mui/icons-material/AutoAwesomeOutlined'; import MergeRoundedIcon from '@mui/icons-material/MergeRounded'; import StopRoundedIcon from '@mui/icons-material/StopRounded'; @@ -173,10 +174,12 @@ export function BeamGatherPane(props: { {/* Method */} - Method} - sx={/*{ mb: '0.25rem' }*/ undefined} - /> + {!props.isMobile && ( + Method} + sx={/*{ mb: '0.25rem' }*/ undefined} + /> + )} {fusions.map(fusion => { @@ -194,7 +197,9 @@ export function BeamGatherPane(props: { // : 'neutral'; const isActive = fusion.fusionId === currentFusionId; - const buttonColor: ColorPaletteProp = isActive && (fusion.status === 'success' || fusion.status === 'stopped') ? GATHER_COLOR : 'neutral'; + const buttonColor: ColorPaletteProp = isActive /*&& (fusion.status === 'success' || fusion.status === 'stopped')*/ + ? GATHER_COLOR + : 'neutral'; return (