diff --git a/public/locales/en/translation.json b/public/locales/en/translation.json index 60a47388..ad6733e8 100644 --- a/public/locales/en/translation.json +++ b/public/locales/en/translation.json @@ -167,6 +167,7 @@ "noResultsDescription": "No results found for this query, consider reducing the number of filters.", "routines": { "addDay": "Add training day", + "addSet": "Add workout set", "addWeightLog": "Add training log", "logsHeader": "Training log for workout", "logsFilterNote": "Note that only entries with a weight unit of kg or lb and repetitions are charted, other combinations such as time or until failure are ignored here", diff --git a/src/components/WorkoutRoutines/Detail/RoutineDetails.tsx b/src/components/WorkoutRoutines/Detail/RoutineDetails.tsx index eb020c96..ef863e5d 100644 --- a/src/components/WorkoutRoutines/Detail/RoutineDetails.tsx +++ b/src/components/WorkoutRoutines/Detail/RoutineDetails.tsx @@ -14,6 +14,7 @@ import { Menu, MenuItem, Stack, + Tooltip, Typography } from "@mui/material"; import { LoadingPlaceholder } from "components/Core/LoadingWidget/LoadingWidget"; @@ -251,9 +252,11 @@ const DayDetails = (props: { day: Day }) => { - - - + + + + + );