kcli queue-summary: use stop emoji rather than pause emoji

It looks clearer and easier to understand than the pause emoji,
especially at normal terminal font sizes.
This commit is contained in:
Wez Furlong
2023-08-07 08:06:39 -07:00
parent 927e18dd58
commit fbb140026d
+2 -2
View File
@@ -355,7 +355,7 @@ impl QueueSummaryCommand {
let mut ready_rows = vec![];
for m in &ready_metrics {
let paused = suspended_sites.iter().any(|s| s.name == m.name);
let status = if paused { "⏸️" } else { "" };
let status = if paused { "🛑" } else { "" };
ready_rows.push(vec![
m.site_name().to_string(),
@@ -399,7 +399,7 @@ impl QueueSummaryCommand {
let status = if bounced {
"🗑️"
} else if paused {
"⏸️"
"🛑"
} else {
""
};