diff --git a/src/components/Routines/screens/Detail/RoutineDetailsTable.tsx b/src/components/Routines/screens/Detail/RoutineDetailsTable.tsx index 067df9c4..d1f3d92d 100644 --- a/src/components/Routines/screens/Detail/RoutineDetailsTable.tsx +++ b/src/components/Routines/screens/Detail/RoutineDetailsTable.tsx @@ -13,6 +13,7 @@ import FlagCircleIcon from '@mui/icons-material/FlagCircle'; import NorthEastIcon from "@mui/icons-material/NorthEast"; import SouthEastIcon from "@mui/icons-material/SouthEast"; import { + Box, Container, FormControlLabel, Stack, @@ -275,40 +276,40 @@ export const RoutineTable = (props: { {logs.map((log) => - + {log.repetitions ?? '-/-'} {getComparisonIcon(log.repetitions, setConfig?.repetitions, setConfig?.maxRepetitions)} - + )} {logs.map((log) => - + {log.weight ?? '-/-'} {getComparisonIcon(log.weight, setConfig?.weight, setConfig?.maxWeight)} - + )} {logs.map((log) => - + {log.restTime ?? '-/-'} {getComparisonIcon(log.restTime, setConfig?.restTime, setConfig?.maxRestTime)} - + )} {logs.map((log) => - + {log.rir ?? '-/-'} {getComparisonIcon(log.rir, setConfig?.rir, setConfig?.maxRir, false)} - + )}