Skip to content

Commit

Permalink
fix: fix the constraint for showing CVE ids (#24) (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
mertssmnoglu authored Jun 2, 2024
1 parent bfcdf1f commit 88be940
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tui.rs
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ fn render_list(app: &mut App, frame: &mut Frame<'_>, area: Rect) {
Line::default()
});
frame.render_stateful_widget(
Table::new(items, &[Constraint::Min(13), Constraint::Percentage(100)])
Table::new(items, &[Constraint::Min(14), Constraint::Percentage(100)])
.header(Row::new(vec![
"Name".set_style(app.theme.highlight).bold(),
"Description".set_style(app.theme.highlight).bold(),
Expand Down

0 comments on commit 88be940

Please sign in to comment.