Skip to content

Commit f04af21

Browse files
committed
align branch name parenth usage
and added changelog github user name
1 parent 216fad3 commit f04af21

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2323
* 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)]
2424
* add `vendor-openssl` feature to allow building without vendored openssl [[@jirutka](https://github.com/jirutka)]
2525
* allow copying marked commits [[@remique](https://github.com/remique)] ([#1288](https://github.com/extrawurst/gitui/issues/1288))
26-
* display tags and branches in the log view ([#1371](https://github.com/extrawurst/gitui/pull/1371))
26+
* display tags and branches in the log view [[@alexmaco]](https://github.com/alexmaco)([#1371](https://github.com/extrawurst/gitui/pull/1371))
2727

2828
### Fixes
2929
* remove insecure dependency `ansi_term` ([#1290](https://github.com/extrawurst/gitui/issues/1290))

Diff for: src/components/commitlist.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,7 @@ impl CommitList {
434434
let branches = self.branches.get(&e.id).map(|names| {
435435
names
436436
.iter()
437-
.map(|name| format!("[{}]", name))
437+
.map(|name| format!("{{{}}}", name))
438438
.join(" ")
439439
});
440440

0 commit comments

Comments
 (0)