fix(tui): don't show HEAD in log
This commit is contained in:
parent
9d736c5e97
commit
ce68a2e208
1 changed files with 1 additions and 0 deletions
|
@ -66,6 +66,7 @@ impl From<LogLine> for Line<'_> {
|
|||
let mut branches = BRANCHES
|
||||
.captures_iter(&caps["branches"])
|
||||
.map(|captures| captures["branch"].to_owned())
|
||||
.filter(|branch| branch != "HEAD")
|
||||
.collect::<Vec<_>>();
|
||||
if branches.is_empty() {
|
||||
// line without branches
|
||||
|
|
Loading…
Reference in a new issue