diff --git a/assets/tag-annotation.gif b/assets/tag-annotation.gif index 5f275a74..b50a24d2 100644 Binary files a/assets/tag-annotation.gif and b/assets/tag-annotation.gif differ diff --git a/src/components/taglist.rs b/src/components/taglist.rs index db097fb1..191ea382 100644 --- a/src/components/taglist.rs +++ b/src/components/taglist.rs @@ -411,7 +411,7 @@ impl TagListComponent { /// fn get_row(&self, tag: &TagWithMetadata) -> Row { const UPSTREAM_SYMBOL: &str = "\u{2191}"; - const ATTACHEMENT_SYMBOL: &str = "!"; + const ATTACHEMENT_SYMBOL: &str = "@"; const EMPTY_SYMBOL: &str = " "; let is_tag_missing_on_remote = self @@ -445,7 +445,7 @@ impl TagListComponent { Cell::from(tag.author.clone()) .style(self.theme.commit_author(false)), Cell::from(has_attachement_str) - .style(self.theme.commit_time(false)), + .style(self.theme.text_danger()), Cell::from(tag.message.clone()) .style(self.theme.text(true, false)), ];