Skip to content
Snippets Groups Projects
Commit aa01db3e authored by Marek Veselý's avatar Marek Veselý
Browse files

feat: add download logs to paused exercises and distinguish between them an those not started yet

parent b3084a3f
No related branches found
No related tags found
No related merge requests found
...@@ -47,7 +47,7 @@ const ExerciseCard: FC<ExerciseCardProps> = ({ ...@@ -47,7 +47,7 @@ const ExerciseCard: FC<ExerciseCardProps> = ({
<> <>
{!exercise.running && !exercise.finished && ( {!exercise.running && !exercise.finished && (
<Button icon='play' {...details.startButtonProps}> <Button icon='play' {...details.startButtonProps}>
Start {exercise.exerciseStart ? 'Resume' : 'Start'}
</Button> </Button>
)} )}
{exercise.running && ( {exercise.running && (
...@@ -60,7 +60,7 @@ const ExerciseCard: FC<ExerciseCardProps> = ({ ...@@ -60,7 +60,7 @@ const ExerciseCard: FC<ExerciseCardProps> = ({
Remove Remove
</Button> </Button>
)} )}
{(exercise.running || exercise.finished) && ( {exercise.exerciseStart && (
<a <a
href={downloadLogUrl(host || '', exercise.id)} href={downloadLogUrl(host || '', exercise.id)}
target='_blank' target='_blank'
...@@ -73,6 +73,7 @@ const ExerciseCard: FC<ExerciseCardProps> = ({ ...@@ -73,6 +73,7 @@ const ExerciseCard: FC<ExerciseCardProps> = ({
), ),
[ [
details, details,
exercise.exerciseStart,
exercise.finished, exercise.finished,
exercise.id, exercise.id,
exercise.running, exercise.running,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment