Skip to content

Commit

Permalink
Fix description width
Browse files Browse the repository at this point in the history
  • Loading branch information
kdheepak committed Feb 6, 2021
1 parent 75c22f7 commit a9fb965
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -618,7 +618,7 @@ impl TTApp {
for (i, header) in headers.iter().enumerate() {
if header == "Description" || header == "Definition" {
if widths[i] > headers.iter().len() {
self.task_report_table.description_width = widths[i] - 2;
self.task_report_table.description_width = widths[i] - 1;
}
break
}
Expand Down

0 comments on commit a9fb965

Please sign in to comment.