Skip to content

Commit 9fa90f1

Browse files
author
Stephan Dilly
committed
fix tag commit msg in taglist (closes gitui-org#871)
1 parent e36e86d commit 9fa90f1

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

Diff for: CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1414
## Added
1515
- added support for markdown emoji's in commits [[@andrewpollack](https://github.com/andrewpollack)] ([#768](https://github.com/extrawurst/gitui/issues/768))
1616

17+
## Fixed
18+
- fix commit msg being broken inside tag list ([#871](https://github.com/extrawurst/gitui/issues/871))
19+
1720
## [0.17.0] - 2021-08-21
1821

1922
**compare commits**

Diff for: src/components/taglist.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ impl DrawableComponent for TagListComponent {
8686
// author width
8787
Constraint::Length(19),
8888
// commit id
89-
Constraint::Min(0),
89+
Constraint::Percentage(100),
9090
];
9191

9292
let rows = self.get_rows();

0 commit comments

Comments
 (0)