We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b9e211 commit fa1a1c8Copy full SHA for fa1a1c8
CHANGELOG.md
@@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
8
## Unreleased
9
10
+## Fixed
11
+- fix commit msg being broken inside tag list ([#871](https://github.com/extrawurst/gitui/issues/871))
12
+
13
## [0.17.0] - 2021-08-21
14
15
**compare commits**
src/components/taglist.rs
@@ -86,7 +86,7 @@ impl DrawableComponent for TagListComponent {
86
// author width
87
Constraint::Length(19),
88
// commit id
89
- Constraint::Min(0),
+ Constraint::Percentage(100),
90
];
91
92
let rows = self.get_rows();
0 commit comments