We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6d5074 commit 926de99Copy full SHA for 926de99
console/src/tasks.rs
@@ -722,11 +722,12 @@ impl TaskState {
722
const IDLE_UTF8: &str = "\u{23F8}";
723
const COMPLETED_UTF8: &str = "\u{23F9}";
724
match self {
725
- Self::Running => {
726
- Span::styled(styles.if_utf8(RUNNING_UTF8, ">"), styles.fg(Color::Green))
727
- }
728
- Self::Idle => Span::raw(styles.if_utf8(IDLE_UTF8, ":")),
729
- Self::Completed => Span::raw(styles.if_utf8(COMPLETED_UTF8, "!")),
+ Self::Running => Span::styled(
+ styles.if_utf8(RUNNING_UTF8, "BUSY"),
+ styles.fg(Color::Green),
+ ),
+ Self::Idle => Span::raw(styles.if_utf8(IDLE_UTF8, "IDLE")),
730
+ Self::Completed => Span::raw(styles.if_utf8(COMPLETED_UTF8, "DONE")),
731
}
732
733
0 commit comments