diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e02a874..3491631d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## Fixed +- fix commit msg being broken inside tag list ([#871](https://github.com/extrawurst/gitui/issues/871)) + ## [0.17.0] - 2021-08-21 **compare commits** diff --git a/src/components/taglist.rs b/src/components/taglist.rs index 67818b18..7512a9fb 100644 --- a/src/components/taglist.rs +++ b/src/components/taglist.rs @@ -86,7 +86,7 @@ impl DrawableComponent for TagListComponent { // author width Constraint::Length(19), // commit id - Constraint::Min(0), + Constraint::Percentage(100), ]; let rows = self.get_rows();