Skip to content

Commit

Permalink
fix(TitleRow): do not add margin below title if there is no title
Browse files Browse the repository at this point in the history
  • Loading branch information
erautenberg committed Nov 10, 2023
1 parent 52f703d commit 6d05f4e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export default class TitleRow extends Row {

_updateRow() {
this.Items.patch({
y: this._Title.finalH + this.style.titleMarginBottom
y: this.title ? this._Title.finalH + this.style.titleMarginBottom : 0
});
}

Expand Down

0 comments on commit 6d05f4e

Please sign in to comment.