Merge pull request 'Update Speech Bubble Emoji From Right to Left' (#14) from 03/fix-emoji into main

Reviewed-on: #14
This commit is contained in:
seb 2025-07-09 13:06:30 -06:00
commit f5055a9ac7

View file

@ -120,7 +120,7 @@ fn handle_command(args: &Args, issues_dir: &std::path::Path) -> anyhow::Result<(
let issue = issues.issues.get(*uuid).unwrap(); let issue = issues.issues.get(*uuid).unwrap();
let comments = match issue.comments.len() { let comments = match issue.comments.len() {
0 => String::from(" "), 0 => String::from(" "),
n => format!("🗩 {}", n), n => format!("🗨️ {}", n),
}; };
let assignee = match &issue.assignee { let assignee = match &issue.assignee {
Some(assignee) => format!(" (👉 {})", assignee), Some(assignee) => format!(" (👉 {})", assignee),