Skip to content

Commit

Permalink
Fix missing space in start time message
Browse files Browse the repository at this point in the history
Closes #2190
  • Loading branch information
eldering committed Oct 28, 2023
1 parent 963b942 commit 355e1d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapp/src/Twig/TwigExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ public function printelapsedminutes(float $start, float $end): string
} elseif ($minutesElapsed == 1) {
return 'started 1 minute ago';
} else {
return 'started' . $minutesElapsed . ' minutes ago';
return 'started ' . $minutesElapsed . ' minutes ago';
}
}

Expand Down

0 comments on commit 355e1d5

Please sign in to comment.