Skip to content

Commit

Permalink
Use + instead of special char
Browse files Browse the repository at this point in the history
  • Loading branch information
Leland-Takamine committed Jan 16, 2025
1 parent d76a5e3 commit 1fffe6a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ class AnsiResultView(
}

private fun status(status: CommandStatus): String {
if (useEmojis) {
if (useEmojis && false) {
return when (status) {
CommandStatus.COMPLETED -> ""
CommandStatus.FAILED -> ""
Expand All @@ -261,7 +261,7 @@ class AnsiResultView(
}
} else {
return when (status) {
CommandStatus.COMPLETED -> " "
CommandStatus.COMPLETED -> "+ "
CommandStatus.FAILED -> "X "
CommandStatus.RUNNING -> "> "
CommandStatus.PENDING -> " "
Expand Down

0 comments on commit 1fffe6a

Please sign in to comment.