align branch name parenth usage

and added changelog github user name
This commit is contained in:
extrawurst 2022-10-18 13:44:27 +02:00
parent 216fad3140
commit f04af21382
2 changed files with 2 additions and 2 deletions

View file

@ -23,7 +23,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* add `regex-fancy` and `regex-onig` features to allow building Syntect with Onigumara regex engine instead of the default engine based on fancy-regex [[@jirutka](https://github.com/jirutka)]
* add `vendor-openssl` feature to allow building without vendored openssl [[@jirutka](https://github.com/jirutka)]
* allow copying marked commits [[@remique](https://github.com/remique)] ([#1288](https://github.com/extrawurst/gitui/issues/1288))
* display tags and branches in the log view ([#1371](https://github.com/extrawurst/gitui/pull/1371))
* display tags and branches in the log view [[@alexmaco]](https://github.com/alexmaco)([#1371](https://github.com/extrawurst/gitui/pull/1371))
### Fixes
* remove insecure dependency `ansi_term` ([#1290](https://github.com/extrawurst/gitui/issues/1290))

View file

@ -434,7 +434,7 @@ impl CommitList {
let branches = self.branches.get(&e.id).map(|names| {
names
.iter()
.map(|name| format!("[{}]", name))
.map(|name| format!("{{{}}}", name))
.join(" ")
});