Skip to content

Commit

Permalink
bump ratatui, tui-textarea (#131)
Browse files Browse the repository at this point in the history
  • Loading branch information
achristmascarl authored Jan 16, 2025
1 parent b55b9b3 commit e44e27f
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 15 deletions.
34 changes: 23 additions & 11 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ lazy_static = "1.4.0"
libc = "0.2.148"
log = "0.4.20"
pretty_assertions = "1.4.0"
ratatui = { version = "0.28.0", features = [
ratatui = { version = "0.29.0", features = [
"serde",
"macros",
"unstable-widget-ref",
Expand Down Expand Up @@ -80,8 +80,8 @@ tracing-subscriber = { version = "0.3.17", features = ["env-filter", "serde"] }
chrono = { version = "0.4", default-features = false }
chrono-tz = { version = "0.10.0", default-features = false }
indexmap = "2.2.6"
tui-textarea = { version = "0.6.1", features = ["search"] }
sqlparser = "0.52.0"
tui-textarea = { version = "0.7.0", features = ["search"] }
sqlparser = "0.53.0"
arboard = { version = "3.4.1", optional = true, features = [
"wayland-data-control",
] }
Expand Down
2 changes: 1 addition & 1 deletion src/components/data.rs
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ impl<'a> SettableDataTable<'a> for Data<'a> {
.header(header_row)
.style(Style::default())
.column_spacing(1)
.highlight_style(Style::default().fg(Color::LightBlue).reversed().bold());
.row_highlight_style(Style::default().fg(Color::LightBlue).reversed().bold());
self.scrollable.set_table(buf_table, rows.headers.len(), rows.rows.len(), 36_u16);
self.data_state = DataState::HasResults(rows);
}
Expand Down

0 comments on commit e44e27f

Please sign in to comment.