Skip to content

Commit 14c79c1

Browse files
author
Stephan Dilly
committed
use @ and style as fat tag symbol
1 parent 8db28d4 commit 14c79c1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

assets/tag-annotation.gif

-126 KB
Loading

src/components/taglist.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,7 @@ impl TagListComponent {
411411
///
412412
fn get_row(&self, tag: &TagWithMetadata) -> Row {
413413
const UPSTREAM_SYMBOL: &str = "\u{2191}";
414-
const ATTACHEMENT_SYMBOL: &str = "!";
414+
const ATTACHEMENT_SYMBOL: &str = "@";
415415
const EMPTY_SYMBOL: &str = " ";
416416

417417
let is_tag_missing_on_remote = self
@@ -445,7 +445,7 @@ impl TagListComponent {
445445
Cell::from(tag.author.clone())
446446
.style(self.theme.commit_author(false)),
447447
Cell::from(has_attachement_str)
448-
.style(self.theme.commit_time(false)),
448+
.style(self.theme.text_danger()),
449449
Cell::from(tag.message.clone())
450450
.style(self.theme.text(true, false)),
451451
];

0 commit comments

Comments
 (0)