Skip to content

Commit

Permalink
0.1.6/remaining_emojy
Browse files Browse the repository at this point in the history
  • Loading branch information
Mediashare committed Oct 6, 2024
1 parent d19c66d commit 41697e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Service/OutputService.php
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ public function outputRenderTask(): self
. ($taskArray['name'] ? " <cyan>" . $taskArray['name'] . "</cyan> " : " ")
. ($taskArray['duration'] ? "<green-bold>" . $taskArray['duration'] . "</green-bold> " : "")
. ((!empty($taskArray['current_steps']) && $taskArray['current_steps'] !== $taskArray['duration']) ? "<magenta-blink>(+". $taskArray['current_steps'] . ")</magenta-blink> " : "")
. ($taskArray['remaining'] ? "🏋️‍♀️" . $taskArray['remaining'] . " " : "")
. ($taskArray['remaining'] ? "🏋️" . $taskArray['remaining'] . " " : "")
. ($taskArray['commits'] ? "🍻<yellow>" . $taskArray['commits'] . "</yellow> " : "")
. "<blue>[" . $taskArray['id']."]</blue>"
);
Expand Down Expand Up @@ -267,7 +267,7 @@ public function outputRenderTasks(): self {
. ($task['name'] ? " <cyan>" . $task['name'] . "</cyan> " : " ")
. ($task['duration'] ? "<green-bold>" . $task['duration'] . "</green-bold> " : "")
. ((!empty($task['current_steps']) && $task['current_steps'] !== $task['duration']) ? "<magenta>(+". $task['current_steps'] . ")</magenta> " : "")
. ($task['remaining'] ? "🏋️‍♀️" . $task['remaining'] . " " : "")
. ($task['remaining'] ? "🏋️" . $task['remaining'] . " " : "")
. ($task['commits'] ? "🍻<yellow>" . $task['commits'] . "</yellow> " : "")
. "<blue>[" . $task['id']."]</blue>"
);
Expand Down

0 comments on commit 41697e9

Please sign in to comment.