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 8db28d4 commit 14c79c1Copy full SHA for 14c79c1
assets/tag-annotation.gif
-126 KB
src/components/taglist.rs
@@ -411,7 +411,7 @@ impl TagListComponent {
411
///
412
fn get_row(&self, tag: &TagWithMetadata) -> Row {
413
const UPSTREAM_SYMBOL: &str = "\u{2191}";
414
- const ATTACHEMENT_SYMBOL: &str = "!";
+ const ATTACHEMENT_SYMBOL: &str = "@";
415
const EMPTY_SYMBOL: &str = " ";
416
417
let is_tag_missing_on_remote = self
@@ -445,7 +445,7 @@ impl TagListComponent {
445
Cell::from(tag.author.clone())
446
.style(self.theme.commit_author(false)),
447
Cell::from(has_attachement_str)
448
- .style(self.theme.commit_time(false)),
+ .style(self.theme.text_danger()),
449
Cell::from(tag.message.clone())
450
.style(self.theme.text(true, false)),
451
];
0 commit comments