mirror of
https://github.com/mailscope/kumomta.git
synced 2026-08-26 06:08:18 +00:00
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:
@@ -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 {
|
||||
""
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user